mirror of
https://github.com/Tencent/tdesign-vue-next-starter.git
synced 2024-11-10 13:18:40 +08:00
11 lines
274 B
JavaScript
11 lines
274 B
JavaScript
|
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'] },
|
||
|
},
|
||
|
};
|