mirror of
https://gitee.com/fantastic-admin/basic.git
synced 2024-12-02 12:07:41 +08:00
19 lines
486 B
Plaintext
19 lines
486 B
Plaintext
|
{
|
||
|
"extends": [
|
||
|
"stylelint-config-standard",
|
||
|
"stylelint-config-recommended-scss"
|
||
|
],
|
||
|
"plugins": [
|
||
|
"stylelint-scss"
|
||
|
],
|
||
|
"rules": {
|
||
|
"indentation": 4,
|
||
|
"rule-empty-line-before": "never",
|
||
|
"at-rule-empty-line-before": "never",
|
||
|
"no-descending-specificity": null,
|
||
|
"selector-pseudo-class-no-unknown": null,
|
||
|
"property-no-unknown": null,
|
||
|
"font-family-no-missing-generic-family-keyword": null
|
||
|
}
|
||
|
}
|