mirror of
https://gitee.com/fantastic-admin/basic.git
synced 2024-12-02 03:57:37 +08:00
49 lines
1.2 KiB
Plaintext
49 lines
1.2 KiB
Plaintext
{
|
|
"extends": [
|
|
"stylelint-config-standard",
|
|
"stylelint-config-recommended-vue/scss"
|
|
],
|
|
"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,
|
|
"function-no-unknown": [
|
|
true,
|
|
{
|
|
"ignoreFunctions": [
|
|
"v-bind",
|
|
"lighten",
|
|
"darken"
|
|
]
|
|
}
|
|
],
|
|
"property-no-vendor-prefix": [
|
|
true,
|
|
{
|
|
"ignoreProperties": [
|
|
"mask-image"
|
|
]
|
|
}
|
|
],
|
|
"max-line-length": null
|
|
}
|
|
}
|