-
-
Notifications
You must be signed in to change notification settings - Fork 634
Expand file tree
/
Copy path.stylelintrc.json
More file actions
46 lines (46 loc) · 1.1 KB
/
.stylelintrc.json
File metadata and controls
46 lines (46 loc) · 1.1 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
34
35
36
37
38
39
40
41
42
43
44
45
46
{
"extends": "stylelint-config-standard-scss",
"rules": {
"color-named": null,
"color-hex-length": "long",
"selector-id-pattern": null,
"scss/at-rule-no-unknown": [
true,
{
"ignoreAtRules": [
"include",
"mixin",
"each",
"if",
"else",
"for",
"while",
"function",
"return",
"use",
"forward"
]
}
],
"selector-class-pattern": null,
"custom-property-pattern": null,
"keyframes-name-pattern": null,
"scss/percent-placeholder-pattern": null,
"scss/dollar-variable-pattern": null,
"scss/at-function-pattern": null,
"scss/at-mixin-pattern": null,
"import-notation": null,
"at-rule-empty-line-before": null,
"font-family-name-quotes": null,
"rule-empty-line-before": null,
"scss/dollar-variable-empty-line-before": null,
"function-url-quotes": null
},
"ignoreFiles": [
"react_on_rails/spec/dummy/app/assets/stylesheets/application.css",
"**/*.js",
"**/*.jsx",
"**/*.ts",
"**/*.tsx"
]
}