2021-08-27 10:13:36 +08:00
|
|
|
{
|
|
|
|
"extends": [
|
|
|
|
"stylelint-config-standard",
|
2022-02-15 16:19:45 +08:00
|
|
|
"stylelint-config-recommended-vue/scss"
|
2021-10-23 15:21:14 +08:00
|
|
|
],
|
|
|
|
"overrides": [
|
|
|
|
{
|
|
|
|
"files": ["**/*.scss"],
|
|
|
|
"customSyntax": "postcss-scss"
|
|
|
|
}
|
2021-08-27 10:13:36 +08:00
|
|
|
],
|
|
|
|
"plugins": [
|
|
|
|
"stylelint-scss"
|
|
|
|
],
|
|
|
|
"rules": {
|
|
|
|
"indentation": 4,
|
|
|
|
"rule-empty-line-before": "never",
|
|
|
|
"at-rule-empty-line-before": "never",
|
2021-11-16 15:43:38 +08:00
|
|
|
"at-rule-no-unknown": null,
|
2021-08-27 10:13:36 +08:00
|
|
|
"no-descending-specificity": null,
|
|
|
|
"selector-pseudo-class-no-unknown": null,
|
|
|
|
"property-no-unknown": null,
|
2021-10-23 20:58:51 +08:00
|
|
|
"font-family-no-missing-generic-family-keyword": null,
|
|
|
|
"selector-id-pattern": null,
|
|
|
|
"selector-class-pattern": null,
|
|
|
|
"scss/no-global-function-names": null,
|
2021-11-10 17:24:57 +08:00
|
|
|
"scss/at-import-partial-extension": null,
|
2022-05-06 23:05:04 +08:00
|
|
|
"function-no-unknown": [
|
|
|
|
true,
|
|
|
|
{
|
|
|
|
"ignoreFunctions": [
|
|
|
|
"v-bind",
|
|
|
|
"lighten",
|
|
|
|
"darken"
|
|
|
|
]
|
|
|
|
}
|
|
|
|
],
|
2022-03-12 09:51:37 +08:00
|
|
|
"property-no-vendor-prefix": [
|
|
|
|
true,
|
|
|
|
{
|
|
|
|
"ignoreProperties": [
|
|
|
|
"mask-image"
|
|
|
|
]
|
|
|
|
}
|
|
|
|
],
|
2021-10-23 20:58:51 +08:00
|
|
|
"max-line-length": null
|
2021-08-27 10:13:36 +08:00
|
|
|
}
|
|
|
|
}
|