forked from civictheme/civictheme_library
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.stylelintrc.json
51 lines (51 loc) · 1.44 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
46
47
48
49
50
51
{
"extends": [
"stylelint-config-standard-scss"
],
"rules": {
"at-rule-no-unknown": [
true,
{
"ignoreAtRules": [
"content",
"each",
"else",
"error",
"extend",
"function",
"for",
"if",
"import",
"include",
"mixin",
"return",
"use",
"warn",
"while"
]
}
],
"at-rule-name-space-after": "always",
"block-opening-brace-space-before": "always",
"block-closing-brace-newline-after": "always",
"color-function-notation": "legacy",
"comment-no-empty": null,
"declaration-block-no-redundant-longhand-properties": null,
"max-line-length": null,
"no-descending-specificity": null,
"scss/at-mixin-argumentless-call-parentheses": "always",
"scss/at-mixin-pattern": "^_?ct-[a-z0-9\\-]+$",
"scss/at-else-closing-brace-newline-after": null,
"scss/at-else-closing-brace-space-after": null,
"scss/at-else-empty-line-before": "never",
"scss/at-if-closing-brace-newline-after": null,
"scss/at-if-closing-brace-space-after": null,
"scss/at-if-no-null": null,
"scss/comment-no-empty": null,
"scss/comment-no-loud": true,
"scss/dollar-variable-pattern": ["^(root|_?ct-.+)", {"ignore": "local"}],
"scss/at-function-parentheses-space-before": "never",
"selector-class-pattern": null,
"string-quotes": "single"
}
}