29 lines
648 B
JavaScript
29 lines
648 B
JavaScript
module.exports = {
|
|
extends: [
|
|
'stylelint-config-standard',
|
|
'stylelint-config-recommended-vue',
|
|
'stylelint-config-prettier'
|
|
],
|
|
// add your custom config here
|
|
// https://stylelint.io/user-guide/configuration
|
|
rules: {
|
|
// Rules to make stylelint happy with tailwind syntax
|
|
'at-rule-no-unknown': [
|
|
true,
|
|
{
|
|
ignoreAtRules: ['tailwind', 'apply', 'variants', 'responsive', 'screen']
|
|
}
|
|
],
|
|
'declaration-block-trailing-semicolon': null,
|
|
'no-descending-specificity': null
|
|
},
|
|
overrides: [
|
|
{
|
|
files: '**/*.vue',
|
|
rules: {
|
|
'value-keyword-case': null
|
|
}
|
|
}
|
|
]
|
|
}
|