mirror of
https://gitee.com/fantastic-admin/basic.git
synced 2024-11-30 02:57:46 +08:00
28 lines
697 B
Plaintext
28 lines
697 B
Plaintext
{
|
|
"extends": [
|
|
"stylelint-stylistic/config",
|
|
"stylelint-config-standard",
|
|
"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,
|
|
"scss/double-slash-comment-empty-line-before": null,
|
|
"scss/no-global-function-names": null
|
|
}
|
|
}
|