You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
664 B
27 lines
664 B
module.exports = {
|
|
root: true,
|
|
extends: [
|
|
'stylelint-config-standard',
|
|
'stylelint-config-standard-scss',
|
|
'stylelint-config-recommended-vue/scss',
|
|
'stylelint-config-recess-order',
|
|
'stylelint-config-prettier',
|
|
],
|
|
rules: {
|
|
'value-keyword-case': null,
|
|
'block-no-empty': null,
|
|
'color-function-notation': null,
|
|
'function-url-quotes': null,
|
|
'property-no-vendor-prefix': null,
|
|
'rule-empty-line-before': 'never',
|
|
'font-family-no-missing-generic-family-keyword': null,
|
|
'no-descending-specificity': null,
|
|
},
|
|
overrides: [
|
|
{
|
|
files: ['**/*.{vue,html}'],
|
|
customSyntax: 'postcss-html',
|
|
},
|
|
],
|
|
}
|