-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.stylelintrc
More file actions
26 lines (26 loc) · 873 Bytes
/
.stylelintrc
File metadata and controls
26 lines (26 loc) · 873 Bytes
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"
],
"rules": {
"selector-class-pattern": null,
"scss/dollar-variable-pattern": null,
"scss/at-rule-no-unknown": true,
"scss/no-global-function-names": null,
"declaration-block-no-duplicate-properties": true,
"no-duplicate-selectors": true,
"alpha-value-notation": "number",
"color-function-notation": "legacy",
"import-notation": "string",
"property-no-vendor-prefix": null,
"declaration-block-single-line-max-declarations": null,
"no-descending-specificity": null,
"scss/double-slash-comment-empty-line-before": null,
"color-hex-length": "long",
"custom-property-empty-line-before": null,
"comment-empty-line-before": null,
"rule-empty-line-before": null,
"selector-not-notation": null,
"scss/dollar-variable-colon-space-after": null
}
}