-
Notifications
You must be signed in to change notification settings - Fork 556
/
.stylelintrc.json
69 lines (69 loc) · 2.97 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"extends": "stylelint-config-standard-scss",
"ignoreFiles": [
"static/src/stylesheets/icons/**/*.scss",
"static/src/stylesheets/email/foundation-emails/**/*.scss",
"static/src/stylesheets/atoms/vars.scss"
],
"rules": {
"selector-class-pattern": null,
"at-rule-empty-line-before": null,
"selector-pseudo-element-colon-notation": null,
"scss/dollar-variable-pattern": null,
"selector-id-pattern": null,
"scss/no-global-function-names": null,
"scss/at-rule-conditional-no-parentheses": null,
"value-keyword-case": null,
"scss/load-no-partial-leading-underscore": null,
"scss/at-mixin-pattern": null,
"scss/at-mixin-argumentless-call-parentheses": null,
"no-descending-specificity": null,
"scss/operator-no-unspaced": null,
"rule-empty-line-before": null,
"scss/dollar-variable-colon-space-after": null,
"no-duplicate-selectors": null,
"length-zero-no-unit": null,
"comment-whitespace-inside": null,
"font-family-no-missing-generic-family-keyword": null,
"scss/percent-placeholder-pattern": null,
"alpha-value-notation": null,
"block-no-empty": null,
"color-function-notation": null,
"color-hex-length": null,
"comment-empty-line-before": null,
"declaration-block-no-redundant-longhand-properties": null,
"declaration-block-no-shorthand-property-overrides": null,
"declaration-block-single-line-max-declarations": null,
"declaration-empty-line-before": null,
"font-family-name-quotes": null,
"font-family-no-duplicate-names": null,
"function-linear-gradient-no-nonstandard-direction": null,
"function-url-quotes": null,
"hue-degree-notation": null,
"keyframes-name-pattern": null,
"media-feature-name-no-vendor-prefix": null,
"media-feature-range-notation": null,
"named-grid-areas-no-invalid": null,
"no-empty-source": null,
"no-invalid-position-at-import-rule": null,
"number-max-precision": null,
"property-no-unknown": null,
"property-no-vendor-prefix": null,
"scss/at-else-closing-brace-newline-after": null,
"scss/at-else-closing-brace-space-after": null,
"scss/at-else-empty-line-before": null,
"scss/at-if-closing-brace-newline-after": null,
"scss/at-if-closing-brace-space-after": null,
"scss/at-mixin-parentheses-space-before": null,
"scss/comment-no-empty": null,
"scss/dollar-variable-empty-line-before": null,
"scss/double-slash-comment-empty-line-before": null,
"scss/double-slash-comment-whitespace-inside": null,
"scss/operator-no-newline-after": null,
"selector-attribute-quotes": null,
"selector-not-notation": null,
"selector-type-no-unknown": null,
"unit-no-unknown": null,
"value-no-vendor-prefix": null
}
}