-
-
Notifications
You must be signed in to change notification settings - Fork 15
/
.stylelintrc
27 lines (27 loc) · 1009 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
{
"extends": [
"stylelint-config-standard-scss"
],
"plugins": [
"stylelint-scss",
"stylelint-use-logical"
],
"rules": {
"at-rule-no-unknown": null,
"scss/at-rule-no-unknown": true,
"color-hex-length": "long",
"comment-whitespace-inside": null,
"no-descending-specificity": null,
"shorthand-property-no-redundant-values": [true, {"severity": "warning"}],
"declaration-no-important": true,
"no-duplicate-at-import-rules": true,
"selector-max-id": 0,
"declaration-block-no-duplicate-properties": true,
"rule-empty-line-before": ["always-multi-line", {"ignore": ["after-comment"]}],
"value-keyword-case": "lower",
"scss/at-import-partial-extension": null,
"selector-class-pattern": ["^([a-z][a-z0-9]*)(-[a-z0-9]+)*(_[a-z0-9]+)*(__[a-z]((_|-)?[a-z0-9])*)?(--[a-z0-9]((_|-)?[a-z0-9\\\\\\/])*)?$", { "resolveNestedSelectors": true }],
"declaration-block-no-redundant-longhand-properties": null,
"csstools/use-logical": true
}
}