forked from wevote/WebApp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.stylelintrc
35 lines (35 loc) · 923 Bytes
/
.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
{
"extends": "stylelint-config-standard",
"plugins": [
"stylelint-declaration-use-variable"
],
"rules": {
"at-rule-empty-line-before": null,
"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,
"max-empty-lines": 3,
"number-leading-zero": "never",
"rule-empty-line-before": null,
"selector-no-id": true,
"selector-no-type": [true, {
"ignoreTypes": ["a"]
}],
"shorthand-property-no-redundant-values": null,
"sh-waqar/declaration-use-variable": [[
"border-radius",
"/color/",
"/margin/",
"/padding/"
]],
"string-quotes": "single",
},
"ignoreFiles": [
"**/vendor/**/*.scss",
"**/_normalize.scss",
"**/overrides/_print.scss"
]
}