mirror of
https://gitee.com/fantastic-admin/basic.git
synced 2024-12-03 12:38:34 +08:00
46 lines
1002 B
Plaintext
Executable File
46 lines
1002 B
Plaintext
Executable File
{
|
|
"extends": [
|
|
"stylelint-stylistic/config",
|
|
"stylelint-config-standard-scss",
|
|
"stylelint-config-standard-vue/scss"
|
|
],
|
|
"plugins": [
|
|
"stylelint-scss"
|
|
],
|
|
"rules": {
|
|
"stylistic/max-line-length": null,
|
|
"stylistic/block-closing-brace-newline-after": [
|
|
"always",
|
|
{
|
|
"ignoreAtRules": ["if", "else"]
|
|
}
|
|
],
|
|
"at-rule-no-unknown": null,
|
|
"no-descending-specificity": null,
|
|
"property-no-unknown": null,
|
|
"font-family-no-missing-generic-family-keyword": null,
|
|
"selector-class-pattern": null,
|
|
"function-no-unknown": [
|
|
true,
|
|
{
|
|
"ignoreFunctions": [
|
|
"v-bind",
|
|
"map-get",
|
|
"lighten",
|
|
"darken"
|
|
]
|
|
}
|
|
],
|
|
"selector-pseudo-element-no-unknown": [
|
|
true,
|
|
{
|
|
"ignorePseudoElements": [
|
|
"/^view-transition/"
|
|
]
|
|
}
|
|
],
|
|
"scss/double-slash-comment-empty-line-before": null,
|
|
"scss/no-global-function-names": null
|
|
}
|
|
}
|