-
Notifications
You must be signed in to change notification settings - Fork 0
/
.stylelintrc.json
27 lines (27 loc) · 892 Bytes
/
.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
{
"extends": [
"stylelint-config-recommended",
"stylelint-config-sass-guidelines",
"stylelint-a11y/recommended",
"stylelint-prettier/recommended",
"stylelint-config-prettier"
],
"plugins": ["stylelint-scss"],
"rules": {
"a11y/media-prefers-reduced-motion": null,
"a11y/no-outline-none": null,
"a11y/selector-pseudo-class-focus": null,
"declaration-property-value-disallowed-list": null,
"font-family-no-missing-generic-family-keyword": null,
"max-nesting-depth": null,
"no-descending-specificity": null,
"no-invalid-position-at-import-rule": null,
"no-irregular-whitespace": null,
"property-no-vendor-prefix": 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
}
}