mirror of
https://github.com/Tencent/tdesign-vue-next-starter.git
synced 2024-11-10 07:48:22 +08:00
12 lines
295 B
JavaScript
12 lines
295 B
JavaScript
// style-lint config
|
|
module.exports = {
|
|
defaultSeverity: 'error',
|
|
extends: ['stylelint-config-airbnb'],
|
|
plugins: ['stylelint-scss'],
|
|
rules: {
|
|
'max-nesting-depth': 10,
|
|
'string-quotes': 'single',
|
|
'declaration-property-value-disallowed-list': { '/^border/': ['none'] },
|
|
},
|
|
};
|