2020-08-06 20:27:40 +00:00
|
|
|
module.exports = {
|
|
|
|
root: true,
|
2023-09-25 22:24:39 +00:00
|
|
|
extends: ['stylelint-config-standard'],
|
|
|
|
customSyntax: 'postcss-sass',
|
|
|
|
overrides: [
|
|
|
|
{
|
|
|
|
files: ['**/*.vue'],
|
|
|
|
customSyntax: 'postcss-html',
|
|
|
|
},
|
2020-08-06 20:27:40 +00:00
|
|
|
],
|
|
|
|
};
|