-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.stylelintrc
27 lines (27 loc) · 858 Bytes
/
.stylelintrc
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
{
"extends": "stylelint-config-standard",
"rules": {
"max-empty-lines": [3, {
"severity": "warning",
"message": "Cut out Empty space. Max empty lines are 3."
}],
"indentation": [2, {
"severity": "warning",
"message": "Try using 2 spaces indents."
}],
"property-no-vendor-prefix": [true, {
"severity": "warning",
"message": "Use Auto prefixer instead of manually writing vendor prefixes"
}],
"value-no-vendor-prefix": [true, {
"severity": "warning",
"message": "Use Auto prefixer instead of manually writing vendor prefixes"
}],
"selector-max-id": 0,
"declaration-no-important": [true, {
"severity": "warning",
"message": "Using !important is considered a bad practice. Avoid using it."
}],
"declaration-block-no-duplicate-properties": true
}
}