-
Notifications
You must be signed in to change notification settings - Fork 634
/
.stylelintrc.json
49 lines (49 loc) · 1.13 KB
/
.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
42
43
44
45
46
47
48
49
{
"extends": ["stylelint-config-standard-scss"],
"plugins": ["stylelint-use-logical-spec", "stylelint-prettier"],
"rules": {
"at-rule-empty-line-before": null,
"custom-property-pattern": null,
"declaration-empty-line-before": null,
"no-descending-specificity": null,
"no-duplicate-selectors": null,
"no-invalid-position-at-import-rule": [
true,
{
"ignoreAtRules": ["tailwind", "use"]
}
],
"selector-class-pattern": null,
"liberty/use-logical-spec": [
"always",
{
"except": [
"height",
"width",
"max-height",
"min-height",
"min-width",
"max-width"
]
}
],
"scss/at-rule-no-unknown": [
true,
{
"ignoreAtRules": [
"charset",
"tailwind",
"apply",
"variants",
"responsive",
"screen"
]
}
],
"scss/operator-no-newline-after": null,
"scss/operator-no-unspaced": null,
"scss/dollar-variable-pattern": null,
"scss/no-global-function-names": null,
"prettier/prettier": true
}
}