-
Notifications
You must be signed in to change notification settings - Fork 1
/
.stylelintrc
42 lines (42 loc) · 997 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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
{
"extends": [
"stylelint-config-standard-scss"
],
"ignoreFiles": [
".next/**/*"
],
"rules": {
"scss/at-rule-no-unknown": [
true,
{
"ignoreAtRules": [
"tailwind",
"apply",
"variants",
"responsive",
"layer",
"screen"
]
}
],
"indentation": "tab",
"max-nesting-depth": 100,
"declaration-property-value-disallowed-list": {},
"selector-no-qualifying-type": null,
"selector-max-compound-selectors": null,
"selector-max-id": 10,
"selector-class-pattern": null,
"scss/selector-no-redundant-nesting-selector": null,
"scss/at-extend-no-missing-placeholder": null,
"scss/at-mixin-pattern": null,
"scss/at-import-partial-extension": null,
"no-empty-source": null,
"scss/no-global-function-names": null,
"no-descending-specificity": null,
"keyframes-name-pattern": null,
"custom-property-pattern": null,
"selector-pseudo-class-no-unknown": null,
"color-function-notation": null,
"alpha-value-notation": null
}
}