-
-
Notifications
You must be signed in to change notification settings - Fork 45
Expand file tree
/
Copy pathstylelintrc.json
More file actions
26 lines (26 loc) · 1008 Bytes
/
stylelintrc.json
File metadata and controls
26 lines (26 loc) · 1008 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"],
"rules": {
"@stylistic/indentation": 4,
"selector-class-pattern": null,
"@stylistic/declaration-block-trailing-semicolon": "always",
"@stylistic/declaration-colon-space-before": null,
"@stylistic/selector-list-comma-newline-after": null,
"comment-empty-line-before": null,
"@stylistic/number-leading-zero": null,
"@stylistic/number-no-trailing-zeros": null,
"@stylistic/string-quotes": "single",
"function-url-quotes": "never",
"@stylistic/no-eol-whitespace": null,
"font-family-name-quotes": "always-unless-keyword",
"font-family-no-missing-generic-family-keyword": null,
"rule-empty-line-before": null,
"@stylistic/max-empty-lines": 2,
"property-no-vendor-prefix": null,
"selector-no-vendor-prefix": null,
"no-descending-specificity": null
},
"plugins": [
"@stylistic/stylelint-plugin"
]
}