forked from metabase/metabase
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.stylelintrc.json
26 lines (26 loc) · 909 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
26
{
"extends": ["stylelint-config-standard", "stylelint-config-css-modules"],
"rules": {
"alpha-value-notation": null,
"color-function-notation": null,
"custom-property-pattern": null,
"import-notation": "string",
"media-feature-range-notation": "prefix",
"no-descending-specificity": null,
"property-no-vendor-prefix": null,
"selector-id-pattern": null,
"selector-class-pattern": null,
"selector-no-vendor-prefix": null,
"value-keyword-case": null,
"declaration-block-no-redundant-longhand-properties": null,
"shorthand-property-no-redundant-values": null,
"declaration-block-no-duplicate-properties": [
true,
{ "ignoreProperties": ["composes"] }
],
"comment-empty-line-before": null,
"selector-pseudo-element-colon-notation": null,
"no-empty-source": null,
"font-family-no-missing-generic-family-keyword": null
}
}