-
Notifications
You must be signed in to change notification settings - Fork 40
/
Copy path.stylelintrc.json
40 lines (40 loc) · 1.49 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
{
"extends": ["stylelint-config-standard-scss", "stylelint-config-css-modules"],
"plugins": ["stylelint-scss"],
"rules": {
"at-rule-empty-line-before": null,
"color-named": "never",
"declaration-block-no-redundant-longhand-properties": null,
"declaration-colon-space-after": "always",
"font-family-no-missing-generic-family-keyword": null,
"no-descending-specificity": null,
"no-duplicate-selectors": null,
"no-eol-whitespace": true,
"property-no-vendor-prefix": null,
"rule-empty-line-before": null,
"scss/at-extend-no-missing-placeholder": null,
"scss/comment-no-empty": null,
"scss/dollar-variable-pattern": null,
"scss/double-slash-comment-empty-line-before": null,
"scss/double-slash-comment-whitespace-inside": null,
"scss/function-no-unknown": null,
"scss/no-global-function-names": null,
"selector-class-pattern": null
},
"TODO: remove these overrides as we move toward industry standards": [
"at-rule-empty-line-before",
"declaration-block-no-redundant-longhand-properties",
"declaration-colon-space-after",
"font-family-no-missing-generic-family-keyword",
"no-descending-specificity",
"no-duplicate-selectors",
"rule-empty-line-before",
"scss/at-extend-no-missing-placeholder",
"scss/comment-no-empty",
"scss/dollar-variable-pattern",
"scss/double-slash-comment-whitespace-inside",
"scss/function-no-unknown",
"scss/no-global-function-names",
"selector-class-pattern"
]
}