tdesign-vue-next-starter/stylelint.config.js

16 lines
309 B
JavaScript
Raw Normal View History

module.exports = {
defaultSeverity: 'error',
extends: ['stylelint-config-prettier'],
plugins: ['stylelint-less'],
2023-02-01 15:37:47 +08:00
overrides: [
{
2023-02-27 14:33:08 +08:00
files: ['**/*.html', '**/*.vue'],
2023-02-01 15:37:47 +08:00
customSyntax: 'postcss-html',
},
{
files: ['**/*.less'],
customSyntax: 'postcss-less',
},
],
};