12 lines
296 B
TypeScript
12 lines
296 B
TypeScript
|
module.exports = {
|
||
|
customSyntax: 'postcss-html',
|
||
|
extends: [
|
||
|
'stylelint-config-standard',
|
||
|
'stylelint-config-recommended-vue',
|
||
|
'stylelint-config-prettier'
|
||
|
],
|
||
|
// add your custom config here
|
||
|
// https://stylelint.io/user-guide/configuration
|
||
|
rules: {}
|
||
|
}
|