-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.stylelintrc.json
More file actions
31 lines (31 loc) · 1.06 KB
/
.stylelintrc.json
File metadata and controls
31 lines (31 loc) · 1.06 KB
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
{
"plugins": [
"@stylistic/stylelint-plugin"
],
"extends": [
"stylelint-config-standard-scss",
"stylelint-config-clean-order",
"@stylistic/stylelint-config"
],
"rules": {
"@stylistic/block-closing-brace-newline-after": ["always", {
"ignoreAtRules": ["if", "else"]
}],
"@stylistic/no-eol-whitespace": [true],
"@stylistic/color-hex-case": "upper",
"color-hex-length": "long",
"at-rule-empty-line-before": ["always", {
"except": ["blockless-after-same-name-blockless", "first-nested"],
"ignore": ["after-comment"],
"ignoreAtRules": ["else"]
}],
"declaration-block-no-redundant-longhand-properties": null,
"no-duplicate-selectors": null,
"scss/at-else-closing-brace-newline-after": "always-last-in-chain",
"scss/at-else-closing-brace-space-after": "always-intermediate",
"scss/at-else-empty-line-before": "never",
"scss/at-if-closing-brace-newline-after": "always-last-in-chain",
"scss/at-if-closing-brace-space-after": "always-intermediate",
"selector-class-pattern": null
}
}