-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstylelint.config.js
46 lines (45 loc) · 1.02 KB
/
stylelint.config.js
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
40
41
42
43
44
45
46
module.exports = {
"extends": [
"stylelint-config-standard",
"stylelint-config-prettier",
"stylelint-config-idiomatic-order",
],
"plugins": [
"stylelint-order",
"stylelint-no-unsupported-browser-features",
],
"rules": {
"plugin/no-unsupported-browser-features": [
true,
{
"severity": "warning"
}
],
"declaration-block-no-redundant-longhand-properties": null,
"selector-class-pattern": null,
"keyframes-name-pattern": null,
"at-rule-no-unknown": null,
"color-hex-length": "long",
"selector-pseudo-element-colon-notation": "single",
"property-no-vendor-prefix": true,
"max-empty-lines": [
2,
{
"ignore": [
"comments"
]
}
],
"rule-empty-line-before": [
"always-multi-line",
{
"except": [
"after-single-line-comment",
"first-nested"
]
}
],
// vvv remove later to make codebase better vvv
"no-descending-specificity": null,
}
}