-
Notifications
You must be signed in to change notification settings - Fork 0
/
scss-lint.yml
66 lines (65 loc) · 1.05 KB
/
scss-lint.yml
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
files:
include: 'scss/**/*.s+(a|c)ss'
ignore:
- 'scss/vendor/**/*.*'
- 'bower_components/**/*.*'
rules:
property-sort-order:
- 0
-
order: 'smacss'
quotes:
- 2
-
style: double
hex-notation:
- 2
-
style: lowercase
mixin-name-format:
- 2
-
allow-leading-underscore: false
convention: strictbem
class-name-format:
- 2
-
allow-leading-underscore: false
convention: strictbem
no-misspelled-properties:
- 1
-
extra-properties:
- 'overflow-scrolling'
no-qualifying-elements:
- 2
-
allow-element-with-class: true
leading-zero:
- 2
empty-line-between-blocks:
- 2
mixins-before-declarations:
- 2
single-line-per-selector:
- 2
no-important:
- 0
no-color-literals:
- 0
no-color-keywords:
- 0
no-vendor-prefixes:
- 0
no-transition-all:
- 0
force-element-nesting:
- 0
force-pseudo-nesting:
- 0
force-attribute-nesting:
- 0
pseudo-element:
- 1
final-newline:
- 0