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

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

View File

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