forked from mofojed/golden-layout
-
Notifications
You must be signed in to change notification settings - Fork 1
/
.stylelintrc
34 lines (34 loc) · 799 Bytes
/
.stylelintrc
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
{
"extends": [
"stylelint-config-standard",
"stylelint-scss"
],
"defaultSeverity": "warning",
"rules": {
"at-rule-no-vendor-prefix": true,
"media-feature-name-no-vendor-prefix": true,
"property-no-vendor-prefix": true,
"selector-no-vendor-prefix": true,
"value-no-vendor-prefix": true,
"max-nesting-depth": [
4,
{
"ignore": [
"blockless-at-rules"
]
}
],
"selector-max-compound-selectors": 4,
"selector-max-specificity": "1,4,1",
"declaration-no-important": true,
"selector-max-universal": 0,
"max-line-length": 120,
"no-eol-whitespace": null,
"at-rule-no-unknown": null
},
"ignoreFiles": [
"node_modules",
"src/scss/sprites/*.scss",
"src/postcss/sprites/*.css"
]
}