-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path.stylelintrc.json
38 lines (38 loc) · 997 Bytes
/
.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
{
"ignoreFiles": [
"./node_modules/**/*.css",
"./node_modules/**/*.js",
"**/*.js",
"./dist/*.css",
"./*.md"
],
"plugins": [
"stylelint-order"
],
"extends": [
"stylelint-config-standard-scss",
"stylelint-config-prettier",
"stylelint-prettier"
],
"rules": {
"at-rule-no-unknown": null,
"alpha-value-notation": "number",
"color-function-notation": "legacy",
"declaration-block-no-shorthand-property-overrides": null,
"font-family-name-quotes": "always-where-recommended",
"font-family-no-missing-generic-family-keyword": true,
"max-nesting-depth": 4,
"no-descending-specificity": null,
"selector-max-compound-selectors": 3,
"selector-class-pattern": null,
"order/order": [
"custom-properties",
"dollar-variables",
"rules"
],
"order/properties-alphabetical-order": true,
"scss/at-rule-no-unknown": true,
"scss/comment-no-empty": null,
"scss/map-keys-quotes": null
}
}