forked from os-autoinst/openQA
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.stylelintrc.json
More file actions
33 lines (33 loc) · 1.21 KB
/
.stylelintrc.json
File metadata and controls
33 lines (33 loc) · 1.21 KB
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
{
"extends": ["stylelint-config-standard-scss"],
"plugins": ["@stylistic/stylelint-plugin"],
"rules": {
"rule-empty-line-before": "never",
"declaration-empty-line-before": "never",
"at-rule-empty-line-before": "never",
"comment-empty-line-before": "never",
"@stylistic/selector-list-comma-newline-after": null,
"@stylistic/selector-list-comma-space-after": "always",
"no-descending-specificity": null,
"selector-class-pattern": null,
"selector-id-pattern": null,
"declaration-block-single-line-max-declarations": null,
"scss/no-global-function-names": null,
"no-invalid-position-at-import-rule": null,
"selector-pseudo-element-no-unknown": null,
"font-family-no-duplicate-names": null,
"font-family-no-missing-generic-family-keyword": null,
"declaration-property-value-keyword-no-deprecated": null,
"number-max-precision": null,
"selector-type-no-unknown": null,
"scss/at-rule-no-unknown": [
true,
{
"ignoreAtRules": ["include", "mixin", "each", "if", "else", "media-breakpoint-up", "media-breakpoint-down"]
}
],
"color-function-notation": null,
"color-function-alias-notation": null,
"import-notation": null
}
}