-
-
Notifications
You must be signed in to change notification settings - Fork 201
Expand file tree
/
Copy path.stylelintrc.json
More file actions
27 lines (27 loc) Β· 979 Bytes
/
.stylelintrc.json
File metadata and controls
27 lines (27 loc) Β· 979 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
27
{
"customSyntax": "postcss-less",
"extends": ["stylelint-config-standard-less"],
"plugins": ["stylelint-less"],
"rules": {
"block-no-empty": true,
"at-rule-no-unknown": null,
"color-function-notation": null,
"color-no-invalid-hex": true,
"less/color-no-invalid-hex": null,
"rule-empty-line-before": null,
"selector-class-pattern": null,
"selector-id-pattern": null,
"declaration-empty-line-before": null,
"property-no-vendor-prefix": null,
"no-duplicate-selectors": null,
"no-descending-specificity": null,
"font-family-no-duplicate-names": null,
"font-family-no-missing-generic-family-keyword": null,
"selector-pseudo-element-no-unknown": null,
"selector-pseudo-class-no-unknown": null,
"declaration-block-no-duplicate-custom-properties": null,
"function-linear-gradient-no-nonstandard-direction": null,
"media-feature-name-no-unknown": null,
"media-feature-range-notation": "prefix"
}
}