-
Notifications
You must be signed in to change notification settings - Fork 7
/
.stylelintrc.json
46 lines (46 loc) · 1.96 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
41
42
43
44
45
46
{
"extends": "stylelint-config-standard-scss",
"rules": {
"color-no-invalid-hex": true,
"unit-no-unknown": true,
"property-no-unknown": true,
"declaration-block-no-duplicate-properties": true,
"no-duplicate-selectors": true,
"alpha-value-notation": null,
"block-closing-brace-newline-before": null,
"block-closing-brace-newline-after": null,
"value-keyword-case": null,
"max-line-length": null,
"string-quotes": "double",
"rule-empty-line-before": null,
"length-zero-no-unit": null,
"selector-descendant-combinator-no-non-space": null,
"color-hex-case": "upper",
"declaration-empty-line-before": null,
"no-eol-whitespace": [true, { "ignore": ["empty-lines"] }],
"color-function-notation": "legacy",
"no-descending-specificity": null,
"selector-type-no-unknown": null,
"keyframes-name-pattern": null,
"comment-whitespace-inside": null,
"selector-no-vendor-prefix": null,
"declaration-block-no-shorthand-property-overrides": null,
"comment-empty-line-before": null,
"selector-list-comma-newline-after": null,
"function-calc-no-unspaced-operator": null,
"custom-property-empty-line-before": null,
"declaration-block-no-redundant-longhand-properties": null,
"custom-property-pattern": null,
"scss/at-mixin-pattern": null,
"scss/dollar-variable-pattern": null,
"scss/operator-no-unspaced": null,
"scss/dollar-variable-default": [true, { "ignore": "local" }],
"scss/dollar-variable-empty-line-before": null,
"block-opening-brace-space-before": null,
"selector-class-pattern": null,
"at-rule-empty-line-before": null,
"scss/at-mixin-argumentless-call-parentheses": "always",
"scss/at-import-no-partial-leading-underscore": true,
"scss/at-import-partial-extension": "never"
}
}