forked from lichess-org/lila
-
-
Notifications
You must be signed in to change notification settings - Fork 41
/
Copy path.stylelintrc.json
25 lines (25 loc) · 984 Bytes
/
.stylelintrc.json
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
{
"extends": ["stylelint-config-standard-scss"],
"ignoreFiles": "**/node_modules/**",
"rules": {
"alpha-value-notation": "number",
"color-function-notation": "legacy",
"comment-empty-line-before": null,
"custom-property-pattern": "^([a-z][a-z0-9]*)([-_][a-z0-9]+)*$",
"declaration-block-no-redundant-longhand-properties": null,
"font-family-no-missing-generic-family-keyword": null,
"media-feature-range-notation": "prefix",
"no-descending-specificity": null,
"number-max-precision": null,
"property-no-vendor-prefix": null,
"scss/dollar-variable-empty-line-before": null,
"scss/double-slash-comment-empty-line-before": null,
"scss/double-slash-comment-whitespace-inside": null,
"scss/operator-no-newline-after": null,
"selector-class-pattern": null,
"selector-id-pattern": null,
"selector-not-notation": "simple",
"selector-type-no-unknown": null,
"shorthand-property-no-redundant-values": null
}
}