-
Notifications
You must be signed in to change notification settings - Fork 0
/
.stylelintrc.json
33 lines (33 loc) · 1.24 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
{
"extends": "stylelint-config-recommended-scss",
"rules": {
"indentation": 2,
"at-rule-no-unknown": null,
"scss/at-function-named-arguments": "always",
"scss/at-function-pattern": "^[a-z][a-z-]*$",
"scss/at-function-parentheses-space-before": "never",
"scss/at-import-no-partial-leading-underscore": true,
"scss/at-mixin-argumentless-call-parentheses": "always",
"scss/at-mixin-named-arguments": null,
"scss/at-mixin-parentheses-space-before": "never",
"scss/at-rule-no-unknown": true,
"scss/dollar-variable-colon-space-after": "at-least-one-space",
"scss/dollar-variable-colon-space-before": "never",
"scss/dollar-variable-no-missing-interpolation": true,
"scss/dollar-variable-pattern": "^[a-z][a-z-\\d]*$",
"scss/media-feature-value-dollar-variable": null,
"scss/no-duplicate-dollar-variables": [
null,
{
"ignoreInsideAtRules": ["if", "mixin"]
}
],
"scss/no-duplicate-mixins": true,
"scss/operator-no-newline-after": true,
"scss/operator-no-newline-before": true,
"scss/operator-no-unspaced": true,
"no-descending-specificity": null
},
"defaultSeverity": "warning",
"ignoreFiles": ["./node_modules/**/*"]
}