forked from ShokoAnime/Shoko-WebUI
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.stylelintrc.json
41 lines (41 loc) · 925 Bytes
/
.stylelintrc.json
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
{
"plugins": [
"@stylistic/stylelint-plugin"
],
"extends": [
"stylelint-config-standard",
"stylelint-config-tailwindcss",
"@stylistic/stylelint-config"
],
"customSyntax": "postcss",
"rules": {
"@stylistic/string-quotes": "single",
"@stylistic/color-hex-case": "lower",
"@stylistic/indentation": 2,
"color-function-notation": "legacy",
"alpha-value-notation": "number",
"font-family-name-quotes": "always-where-recommended",
"selector-pseudo-class-no-unknown": [
true,
{
"ignorePseudoClasses": [
"global"
]
}
],
"at-rule-no-unknown": [
true,
{
"ignoreAtRules": [
"tailwind",
"apply",
"variants",
"responsive",
"screen"
]
}
],
"@stylistic/declaration-block-trailing-semicolon": null,
"no-descending-specificity": null
}
}