-
Notifications
You must be signed in to change notification settings - Fork 0
/
.stylelintrc.json
35 lines (35 loc) · 1.04 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
{
"extends": [
"stylelint-config-recommended",
"stylelint-config-tailwindcss/scss",
"stylelint-config-standard-scss"
],
"rules": {
"import-notation": null,
"selector-class-pattern": null,
"scss/dollar-variable-colon-space-before": null,
"scss/no-global-function-names": null,
"at-rule-empty-line-before": null,
"property-no-vendor-prefix": null,
"rule-empty-line-before": null,
"declaration-block-no-duplicate-properties": null,
"scss/operator-no-unspaced": null,
"declaration-empty-line-before": null,
"comment-empty-line-before": null,
"scss/dollar-variable-empty-line-before": null,
"scss/dollar-variable-pattern": null,
"declaration-block-no-shorthand-property-overrides": null,
"scss/double-slash-comment-empty-line-before": null,
"scss/at-if-closing-brace-newline-after": null,
"scss/at-if-closing-brace-space-after": null,
"scss/at-rule-no-unknown": [
true,
{
"ignoreAtRules": [
"tailwind"
]
}
]
},
"overrides": []
}