-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.stylelintrc
26 lines (26 loc) · 925 Bytes
/
.stylelintrc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{
"defaultSeverity": "warning",
"plugins": ["stylelint-prettier", "stylelint-less"],
"extends": ["stylelint-config-standard", "stylelint-config-prettier"],
"overrides": [
{ "files": ["**/*.html", "**/*.vue"], "customSyntax": "postcss-html" },
{ "files": ["**/*.less"], "customSyntax": "postcss-less" }
],
"rules": {
"at-rule-no-unknown": [
true,
{ "ignoreAtRules": ["tailwind", "apply", "variants", "responsive", "screen"] }
],
"color-function-notation": null,
"declaration-block-trailing-semicolon": null,
"no-descending-specificity": null,
"no-empty-source": null,
"selector-pseudo-class-no-unknown": [true, { "ignorePseudoClasses": ["deep"] }],
"selector-pseudo-element-no-unknown": [true, { "ignorePseudoElements": ["v-deep"] }]
},
"ignoreFiles": [
"./node_modules/**/*.{css,less}",
"./dist/**/*.{css,less}",
"./.nuxt/**/*.{css,less}"
]
}