mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
17 lines
322 B
JavaScript
17 lines
322 B
JavaScript
module.exports = {
|
|
extends: [
|
|
'stylelint-config-standard',
|
|
'stylelint-config-rational-order',
|
|
'stylelint-config-prettier',
|
|
],
|
|
rules: {
|
|
'no-descending-specificity': null,
|
|
'selector-pseudo-element-no-unknown': [
|
|
true,
|
|
{
|
|
ignorePseudoElements: ['v-deep'],
|
|
},
|
|
],
|
|
},
|
|
};
|