forked from accessibility-exchange/platform
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.stylelintrc.json
39 lines (39 loc) · 1.21 KB
/
.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
27
28
29
30
31
32
33
34
35
36
37
38
39
{
"extends": [
"stylelint-config-standard"
],
"plugins": [
"stylelint-order",
"stylelint-plugin-logical-css"
],
"ignoreFiles": ["public/**/*.css", "vendor/**/*.css"],
"rules": {
"plugin/use-logical-properties-and-values": [
true,
{"ignore": ["float", "top", "left", "right", "bottom", "max-width", "min-width", "max-height", "min-height", "width", "height", "overflow-y",
"overflow-x", "resize"]}
],
"order/order": [
"custom-properties",
"declarations"
],
"order/properties-alphabetical-order": true,
"selector-class-pattern": null,
"no-descending-specificity": null,
"custom-property-pattern": null,
"media-feature-range-notation": null,
"declaration-block-no-redundant-longhand-properties": null,
"declaration-block-no-duplicate-properties": [
true,
{
"ignore": ["consecutive-duplicates-with-different-values"]
}
],
"at-rule-no-unknown": [
true,
{
"ignoreAtRules": ["tailwind", "import-glob"]
}
]
}
}