forked from ekateriinal/angular-cvi-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.stylelintrc.json
26 lines (26 loc) · 1011 Bytes
/
.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
{
"extends": ["stylelint-config-standard-scss", "stylelint-config-prettier-scss"],
"rules": {
"function-calc-no-unspaced-operator": true,
"custom-property-no-missing-var-function": true,
"property-no-unknown": true,
"declaration-block-no-duplicate-custom-properties": true,
"declaration-block-no-duplicate-properties": true,
"declaration-block-no-shorthand-property-overrides": true,
"block-no-empty": true,
"selector-pseudo-class-no-unknown": true,
"selector-pseudo-element-no-unknown": null,
"media-feature-name-no-unknown": true,
"comment-no-empty": true,
"no-descending-specificity": true,
"no-duplicate-at-import-rules": true,
"no-duplicate-selectors": true,
"custom-property-pattern": null,
"custom-property-empty-line-before": null,
"no-invalid-double-slash-comments": true,
"declaration-no-important": true,
"max-nesting-depth": 6,
"no-extra-semicolons": true,
"selector-class-pattern": "^[a-z][a-z0-9_-]+$"
}
}