1
0
mirror of https://gitee.com/vant-contrib/vant.git synced 2025-04-06 03:57:59 +08:00

chore(stylelint): deep error in vue3 compiler ()

This commit is contained in:
Jake 2020-12-21 17:57:59 +08:00 committed by GitHub
parent a2ed3166f4
commit 52f02eeefd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -1,8 +1,5 @@
module.exports = {
extends: [
'stylelint-config-standard',
'stylelint-config-prettier',
],
extends: ['stylelint-config-standard', 'stylelint-config-prettier'],
rules: {
'no-descending-specificity': null,
'selector-pseudo-element-no-unknown': [
@ -11,5 +8,11 @@ module.exports = {
ignorePseudoElements: ['v-deep'],
},
],
'selector-pseudo-class-no-unknown': [
true,
{
ignorePseudoClasses: ['deep'],
},
],
},
};