-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy path.sass-lint.yml
71 lines (59 loc) · 1.28 KB
/
.sass-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
67
68
69
70
71
options:
merge-default-rules: true
files:
include: 'src/scss/**/*.s+(a|c)ss'
ignore:
- 'src/sass/base/_sprite.scss'
- 'src/sass/lib/mixins/_grid.scss'
rules:
no-ids: 0
force-element-nesting: 0
property-sort-order: 0
single-line-per-selector: 0
no-important: 0
no-vendor-prefixes: 0
no-empty-rulesets: 0
force-pseudo-nesting: 0
no-qualifying-elements: 0
no-warn: 0
brace-style: 0
no-url-domains: 0
no-url-protocols:
- 1
- allow-protocol-relative-urls: true
nesting-depth:
- 1
- max-depth: 2
mixins-before-declarations:
- 1
- exclude: ['mq']
leading-zero:
- 1
- include: true
no-color-literals:
- 1
- allow-rgba: true
no-misspelled-properties:
- 1
- extra-properties:
- 'overflow-scrolling'
- 'flex-preferred-size'
- 'interpolation-mode'
quotes:
- 1
- style: single
indentation:
size: 2
no-duplicate-properties:
- 1
- exclude:
- src
# @TODO update this rules with a appropriate
# regex to enforce class naming style.
class-name-format: 0
variable-name-format: 0
# Properties that should not be enforced
# but that can be give some good insight
# if uncommented temporally.
no-mergeable-selectors: 0
placeholder-in-extend: 0