-
Notifications
You must be signed in to change notification settings - Fork 257
/
.stylelintrc.json
35 lines (35 loc) · 1.25 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-standard-scss",
"plugins": [
"stylelint-order"
],
"rules": {
"alpha-value-notation": null,
"color-function-notation": "legacy",
"color-hex-case": "upper",
"color-hex-length": null,
"color-named": "never",
"declaration-colon-newline-after": null,
"declaration-colon-space-after": "always",
"declaration-no-important": true,
"function-parentheses-space-inside": "always",
"indentation": 4,
"keyframes-name-pattern": null,
"max-line-length": null,
"media-feature-parentheses-space-inside": "always",
"no-descending-specificity": null,
"no-duplicate-selectors": true,
"no-invalid-position-at-import-rule": null,
"number-leading-zero": "never",
"order/properties-alphabetical-order": true,
"scss/dollar-variable-pattern": null,
"scss/no-global-function-names": null,
"selector-class-pattern": null,
"selector-id-pattern": null,
"selector-no-qualifying-type": null,
"selector-pseudo-class-parentheses-space-inside": "always",
"selector-pseudo-element-colon-notation": "double",
"shorthand-property-no-redundant-values": null,
"font-family-no-missing-generic-family-keyword": null
}
}