-
Notifications
You must be signed in to change notification settings - Fork 111
/
.stylelintrc.json
36 lines (36 loc) · 1.03 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
{
"extends": "stylelint-config-standard-scss",
"plugins": [
"stylelint-scss"
],
"rules": {
"at-rule-empty-line-before": null,
"at-rule-no-unknown": null,
"color-function-notation": null,
"declaration-empty-line-before": null,
"indentation": 4,
"no-duplicate-selectors": null,
"no-empty-source": null,
"no-invalid-double-slash-comments": null,
"no-invalid-position-at-import-rule": null,
"no-missing-end-of-source-newline": null,
"number-leading-zero": "never",
"scss/at-rule-no-unknown": true,
"scss/comment-no-empty": null,
"selector-class-pattern": "^([a-z][a-z0-9]*)(-[a-z0-9]+)*$",
"selector-pseudo-element-no-unknown": [
true,
{
"ignorePseudoElements": [
"ng-deep"
]
}
],
"string-quotes": "single"
},
"ignoreFiles": [
"**/*.cs",
"build/**/*.*",
"node_modules/**/*.*"
]
}