forked from spyder-ide/spyder-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.stylelintrc.json
40 lines (40 loc) · 1.54 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"],
"reportDescriptionlessDisables": true,
"reportInvalidScopeDisables": true,
"reportNeedlessDisables": true,
"plugins": [
"stylelint-csstree-validator",
"stylelint-declaration-block-no-ignored-properties",
"stylelint-no-unsupported-browser-features",
"stylelint-order"
],
"rules": {
"at-rule-semicolon-space-before": "never",
"block-closing-brace-space-after": "always-single-line",
"block-opening-brace-newline-after": "always",
"block-closing-brace-newline-before": "always",
"color-named": "never",
"declaration-block-semicolon-newline-before": "never-multi-line",
"font-weight-notation": "named-where-possible",
"function-comma-newline-before": "never-multi-line",
"function-url-no-scheme-relative": true,
"linebreaks": "unix",
"max-empty-lines": 2,
"media-query-list-comma-newline-before": "never-multi-line",
"no-descending-specificity": null,
"no-unknown-animations": true,
"number-max-precision": 5,
"property-no-unknown": [true, {"checkPrefixed": true}],
"rule-empty-line-before": "always",
"selector-list-comma-newline-before": "never-multi-line",
"selector-list-comma-space-after": "always-single-line",
"time-min-milliseconds": 100,
"unicode-bom": "never",
"value-list-comma-newline-before": "never-multi-line",
"csstree/validator": true,
"order/properties-alphabetical-order": true,
"plugin/declaration-block-no-ignored-properties": true,
"plugin/no-unsupported-browser-features": true
}
}