forked from lichess-org/lila
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.stylelintrc.json
More file actions
22 lines (22 loc) · 843 Bytes
/
.stylelintrc.json
File metadata and controls
22 lines (22 loc) · 843 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"plugins": ["stylelint-scss"],
"extends": "stylelint-config-standard-scss",
"rules": {
"alpha-value-notation": "number",
"block-no-redundant-nested-style-rules": null,
"color-function-alias-notation": null,
"color-function-notation": ["legacy", { "ignore": ["with-var-inside"] }],
"custom-property-pattern": null,
"declaration-block-no-redundant-longhand-properties": null,
"font-family-no-missing-generic-family-keyword": null,
"hue-degree-notation": "number",
"no-invalid-position-at-import-rule": null,
"selector-class-pattern": null,
"selector-id-pattern": null,
"selector-type-no-unknown": null,
"shorthand-property-no-redundant-values": null,
"scss/dollar-variable-pattern": null,
"scss/no-global-function-names": null,
"scss/operator-no-newline-after": null
}
}