-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.stylelintrc
More file actions
21 lines (21 loc) · 1020 Bytes
/
.stylelintrc
File metadata and controls
21 lines (21 loc) · 1020 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
"extends": [
"@stylistic/stylelint-config",
"stylelint-config-standard"
],
"rules": {
"@stylistic/selector-list-comma-newline-after": "always-multi-line",
"@stylistic/max-line-length": 240,
"at-rule-no-unknown": [true, {"ignoreAtRules": ["layer", "tailwind", "theme", "utility", "variant", "custom-variant", "source"]}],
"length-zero-no-unit": [true, {"ignore": ["custom-properties"]}],
"property-no-vendor-prefix": [true, { "ignoreProperties": "appearance" }],
"number-max-precision": [6, { "ignoreProperties": "letter-spacing" }],
"selector-class-pattern": null,
"import-notation": "string",
"media-feature-range-notation": "prefix",
"property-no-unknown": [true, { "ignoreProperties": ["/^mso-/"]} ],
"selector-pseudo-element-no-unknown": [true, {"ignorePseudoElements": ["picker", "picker-icon", "checkmark"]}],
"declaration-property-value-no-unknown": [true, {"ignoreProperties": {"appearance": ["base-select"]}}]
},
"ignoreFiles": ["**/+.css"]
}