1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
| module.exports = { extends: [ 'stylelint-config-recommended', 'stylelint-config-standard', 'stylelint-config-rational-order', 'stylelint-config-prettier', 'stylelint-config-html', 'stylelint-config-recommended-vue', ], plugins: ['stylelint-order', 'stylelint-config-rational-order/plugin'], rules: {}, overrides: [ { files: ['*.less', '**/*.less'], customSyntax: 'postcss-less', }, { files: ['*.html', '**/*.html'], customSyntax: 'postcss-html', }, { files: ['*.vue', '**/*.vue'], customSyntax: 'postcss-html', }, ], reportDescriptionlessDisables: [true, { except: [] }], reportNeedlessDisables: true, };
|