13 lines
288 B
JavaScript
13 lines
288 B
JavaScript
|
|
module.exports = {
|
||
|
|
customSyntax: 'postcss-html',
|
||
|
|
extends: [
|
||
|
|
'stylelint-config-standard',
|
||
|
|
'stylelint-config-recommended-vue',
|
||
|
|
],
|
||
|
|
// add your custom config here
|
||
|
|
// https://stylelint.io/user-guide/configuration
|
||
|
|
rules: {
|
||
|
|
"no-invalid-position-declaration": null
|
||
|
|
},
|
||
|
|
}
|