mirror of
https://gitee.com/fantastic-admin/basic.git
synced 2024-12-02 03:57:37 +08:00
32 lines
898 B
Plaintext
32 lines
898 B
Plaintext
{
|
|
"extends": [
|
|
"stylelint-config-standard",
|
|
"stylelint-config-recommended-scss",
|
|
"stylelint-config-recommended-vue"
|
|
],
|
|
"overrides": [
|
|
{
|
|
"files": ["**/*.scss"],
|
|
"customSyntax": "postcss-scss"
|
|
}
|
|
],
|
|
"plugins": [
|
|
"stylelint-scss"
|
|
],
|
|
"rules": {
|
|
"indentation": 4,
|
|
"rule-empty-line-before": "never",
|
|
"at-rule-empty-line-before": "never",
|
|
"at-rule-no-unknown": null,
|
|
"no-descending-specificity": null,
|
|
"selector-pseudo-class-no-unknown": null,
|
|
"property-no-unknown": null,
|
|
"font-family-no-missing-generic-family-keyword": null,
|
|
"selector-id-pattern": null,
|
|
"selector-class-pattern": null,
|
|
"scss/no-global-function-names": null,
|
|
"scss/at-import-partial-extension": null,
|
|
"max-line-length": null
|
|
}
|
|
}
|