forked from mdn/yari
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.stylelintrc.json
38 lines (38 loc) · 1.32 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
{
"extends": [
"stylelint-config-recommended",
"stylelint-config-sass-guidelines",
"stylelint-a11y/recommended",
"stylelint-prettier/recommended"
],
"plugins": ["stylelint-scss"],
"rules": {
"a11y/media-prefers-reduced-motion": null,
"a11y/no-outline-none": null,
"a11y/selector-pseudo-class-focus": null,
"block-no-empty": null,
"color-named": null,
"custom-property-no-missing-var-function": null,
"declaration-block-no-duplicate-properties": null,
"declaration-property-value-disallowed-list": null,
"font-family-no-missing-generic-family-keyword": null,
"function-no-unknown": null,
"function-url-quotes": null,
"length-zero-no-unit": null,
"max-nesting-depth": null,
"no-descending-specificity": null,
"no-duplicate-selectors": null,
"no-invalid-position-at-import-rule": null,
"no-irregular-whitespace": null,
"property-no-vendor-prefix": null,
"rule-empty-line-before": null,
"scss/at-extend-no-missing-placeholder": null,
"scss/selector-no-redundant-nesting-selector": null,
"selector-class-pattern": null,
"selector-max-compound-selectors": null,
"selector-max-id": null,
"selector-no-qualifying-type": null,
"selector-pseudo-element-colon-notation": null,
"shorthand-property-no-redundant-values": null
}
}