forked from AlexMinaievCatena/coding-standards
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.stylelintrc
More file actions
40 lines (40 loc) · 1.02 KB
/
Copy path.stylelintrc
File metadata and controls
40 lines (40 loc) · 1.02 KB
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
{
"extends": [
"stylelint-config-recommended-scss",
"stylelint-config-sass-guidelines"
],
"plugins": [
"stylelint-scss",
"stylelint-order",
"stylelint-config-rational-order/plugin"
],
"rules": {
"order/properties-order": [],
"plugin/rational-order": [
true,
{
"border-in-box-model": false,
"empty-line-between-groups": false
}
],
"order/properties-alphabetical-order": false,
"declaration-empty-line-before": "never",
"max-nesting-depth": [
3,
{
"ignore": ["pseudo-classes"]
}
],
"max-empty-lines": 1,
"selector-class-pattern": [
"",
{
"message":
"TODO: Temporary no rules for selectors and class names"
}
],
"string-quotes": "double",
"number-leading-zero": "always",
"indentation": [4]
}
}