forked from pypi/warehouse
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.stylelintrc.json
45 lines (45 loc) · 1.1 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
{
"extends": [
"stylelint-config-standard-scss"
],
"plugins": [
"stylelint-selector-bem-pattern"
],
"ignoreFiles": [
"warehouse/static/sass/tools/bourbon/**/*",
"warehouse/static/sass/tools/neat/**/*",
"warehouse/static/sass/resets/_boxsizing.scss",
"warehouse/static/sass/resets/_reset.scss"
],
"reportDescriptionlessDisables": true,
"reportInvalidScopeDisables": true,
"reportNeedlessDisables": true,
"rules": {
"at-rule-empty-line-before": null,
"comment-empty-line-before": [
"always",
{
"ignoreComments": [
"/rtl/"
]
}
],
"comment-whitespace-inside": null,
"declaration-empty-line-before": null,
"font-family-no-missing-generic-family-keyword": [
true,
{
"ignoreFontFamilies": [
"/^Font Awesome.*$/"
]
}
],
"no-descending-specificity": null,
"plugin/selector-bem-pattern": {
"preset": "bem"
},
"selector-class-pattern": null,
"scss/dollar-variable-colon-space-after": "at-least-one-space",
"scss/no-global-function-names": null
}
}