@onefinity/stylelint-config 2.0.0 → 2.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.js +4 -1
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -182,12 +182,15 @@ module.exports = {
|
|
|
182
182
|
'unspecified': 'bottom'
|
|
183
183
|
}
|
|
184
184
|
],
|
|
185
|
+
'property-no-unknown': [true, {
|
|
186
|
+
'ignoreProperties': ['container']
|
|
187
|
+
}],
|
|
185
188
|
'rule-empty-line-before': ['always', {
|
|
186
189
|
'except': ['first-nested'],
|
|
187
190
|
'ignore': ['after-comment']
|
|
188
191
|
}],
|
|
189
192
|
'scss/at-rule-no-unknown': [true, {
|
|
190
|
-
'ignoreAtRules': ['content', 'each', 'else', 'error', 'extend', 'for', 'function', 'if', 'include', 'mixin', 'return', 'warn']
|
|
193
|
+
'ignoreAtRules': ['container', 'content', 'each', 'else', 'error', 'extend', 'for', 'function', 'if', 'include', 'mixin', 'return', 'warn']
|
|
191
194
|
}],
|
|
192
195
|
'selector-attribute-quotes': 'always',
|
|
193
196
|
'selector-class-pattern': ['^[a-z][a-zA-Z0-9]*$', {
|