-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.stylelintrc.json
29 lines (29 loc) · 1.16 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
{
"extends": ["stylelint-config-standard-scss"],
"plugins": [
"stylelint-scss",
"stylelint-no-unsupported-browser-features"
],
"rules": {
"at-rule-no-unknown": null,
"scss/at-rule-no-unknown": true,
"indentation": [4, {"baseIndentLevel": 1}],
"number-leading-zero": ["always", {"severity": "warning"}],
"max-empty-lines": [1, {"severity": "warning"}],
"max-line-length": [null, {"severity": "warning"}],
"scss/dollar-variable-empty-line-before": [null, {"severity": "warning"}],
"block-no-empty": [null, {"severity": "warning"}],
"comment-empty-line-before": [null, {"severity": "warning"}],
"color-function-notation": "legacy",
"alpha-value-notation": "number",
"selector-class-pattern": [null, {"severity": "warning"}],
"value-keyword-case": ["lower", {"ignoreProperties": ["font-family"]}],
"scss/no-global-function-names": [null, {"severity": "warning"}],
"plugin/no-unsupported-browser-features": [true, {
"browsers": ["> 0.5%", "last 2 versions", "Firefox ESR", "not dead", "not op_mini all"],
"ignore": ["rem"],
"ignorePartialSupport": true,
"severity": "warning"
}]
}
}