forked from wevote/WebApp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.stylelintrc
43 lines (43 loc) · 1.28 KB
/
.stylelintrc
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
{
"extends": "stylelint-config-standard",
"plugins": [
"stylelint-declaration-use-variable"
],
"rules": {
"at-rule-empty-line-before": null,
"at-rule-no-unknown": [true, {
"ignoreAtRules": ["content", "each", "else", "error", "extend", "for", "function", "if", "include", "mixin", "return", "warn", "while"]
}],
"block-closing-brace-newline-after": ["always-multi-line", {
"ignoreAtRules": ["if", "else"]
}],
"block-opening-brace-space-before": "always-multi-line",
"color-hex-case": "lower",
"declaration-empty-line-before": null,
"font-family-no-missing-generic-family-keyword": null,
"max-empty-lines": 3,
"no-descending-specificity": null,
"number-leading-zero": "never",
"rule-empty-line-before": null,
"selector-max-id": 0,
"selector-max-type": [0, {
"ignoreTypes": ["a"]
}],
"shorthand-property-no-redundant-values": null,
"sh-waqar/declaration-use-variable": [[
"border-radius",
"/color/",
"/margin/",
"/padding/"
]],
"string-quotes": "single"
},
"ignoreFiles": [
"**/index.html",
"**/vendor/**/*.scss",
"**/_normalize.scss",
"**/overrides/_print.scss",
"**/components/_bootstrap3LeftBehind.scss",
"**/components/_nps-input.scss"
]
}