32 lines
809 B
JavaScript
32 lines
809 B
JavaScript
module.exports = {
|
|
extends: [
|
|
'stylelint-config-standard-scss'
|
|
],
|
|
plugins: [
|
|
'stylelint-order'
|
|
],
|
|
rules: {
|
|
'order/properties-alphabetical-order': true,
|
|
'scss/at-import-partial-extension': null,
|
|
'scss/at-import-no-partial-leading-underscore': null,
|
|
'selector-class-pattern': null,
|
|
'custom-property-pattern': null,
|
|
'keyframes-name-pattern': null,
|
|
'scss/dollar-variable-pattern': null,
|
|
'scss/percent-placeholder-pattern': null,
|
|
'scss/at-mixin-pattern': null,
|
|
'scss/at-function-pattern': null,
|
|
'declaration-empty-line-before': null,
|
|
'rule-empty-line-before': [
|
|
'always-multi-line',
|
|
{
|
|
except: ['first-nested'],
|
|
ignore: ['after-comment']
|
|
}
|
|
]
|
|
},
|
|
ignoreFiles: [
|
|
'dist/**/*',
|
|
'node_modules/**/*'
|
|
]
|
|
}; |