1
+ options :
2
+ formatter : stylish
3
+ files :
4
+ include : ' _sass/**/*.s+(a|c)ss'
5
+ ignore :
6
+ - ' dist/*.css'
7
+ - ' /node_modules/**/*.s+(a|c)ss'
8
+ rules :
9
+
10
+ # Extends
11
+ extends-before-declarations : 0
12
+ extends-before-mixins : 0
13
+ placeholder-in-extend : 0
14
+
15
+ # Styleguide
16
+ attribute-quotes : 2
17
+ bem-depth : 0
18
+ border-zero : 0
19
+ brace-style : 2
20
+ clean-import-paths : 2
21
+ empty-args : 0
22
+ hex-length : 2
23
+ hex-notation : 2
24
+ indentation :
25
+ - 2
26
+ -
27
+ size : 2
28
+ leading-zero : 0
29
+ nesting-depth : 2
30
+ property-sort-order : 0
31
+ pseudo-element : 0
32
+ quotes :
33
+ - 2
34
+ -
35
+ style : ' single'
36
+ shorthand-values : 0
37
+ url-quotes : 2
38
+ variable-for-property : 0
39
+ zero-unit : 2
40
+
41
+ # Final items
42
+ final-newline : 0
43
+
44
+ # Nesting
45
+ force-attribute-nesting : 0
46
+ force-element-nesting : 0
47
+ force-pseudo-nesting : 0
48
+
49
+ # Disallow
50
+ no-attribute-selectors : 0
51
+ no-color-hex : 0
52
+ no-color-keywords : 2
53
+ no-color-literals : 0
54
+ no-combinators : 0
55
+ no-css-comments : 2
56
+ no-debug : 0
57
+ no-disallowed-properties : 0
58
+ no-duplicate-properties :
59
+ - 2
60
+ -
61
+ exclude :
62
+ - display
63
+ - opacity
64
+ no-empty-rulesets : 2
65
+ no-extends : 0
66
+ no-ids : 0
67
+ no-important : 0
68
+ no-invalid-hex : 2
69
+ no-mergeable-selectors : 0
70
+ no-qualifying-elements :
71
+ - 2
72
+ -
73
+ allow-element-with-attribute : true
74
+ allow-element-with-class : true
75
+ no-misspelled-properties : 2
76
+ no-trailing-whitespace : 2
77
+ no-trailing-zero : 0
78
+ no-transition-all : 0
79
+ no-universal-selectors : 0
80
+ no-url-domain : 0
81
+ no-url-protocols : 0
82
+ no-vendor-prefixes : 0
83
+ no-warn : 0
84
+ property-units : 0
85
+
86
+ # Mixins
87
+ mixins-before-declarations : 0
88
+
89
+ # Inner spacing
90
+ space-after-bang : 0
91
+ space-before-bang : 0
92
+
93
+ space-before-brace : 2
94
+
95
+ space-after-colon : 2
96
+ space-before-colon : 0
97
+
98
+ space-after-comma : 2
99
+
100
+ space-between-parens : 0
101
+
102
+ space-around-operator : 2
103
+
104
+ # Line spacing
105
+ empty-line-between-blocks : 2
106
+ one-declaration-per-line : 2
107
+ single-line-per-selector : 2
108
+
109
+ # Final items
110
+ trailing-semicolon : 2
111
+
112
+ # Name formats
113
+ class-name-format :
114
+ - 2
115
+ -
116
+ convention : ' hyphenatedbem'
117
+ ignore :
118
+ - ' processStep'
119
+ function-name-format : 0
120
+ id-name-format : 0
121
+ mixin-name-format : 2
122
+ placeholder-name-format : 0
123
+ variable-name-format :
124
+ - 2
125
+ -
126
+ convention : ' hyphenatedbem'
0 commit comments