forked from fourkitchens/emulsify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.sass-lint.yml
52 lines (50 loc) · 1.03 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
# docs: https://github.com/sasstools/sass-lint
# rules: https://github.com/sasstools/sass-lint/tree/master/docs/rules
# Get the default of this file which will contain any new rules: https://github.com/sasstools/sass-lint/blob/master/docs/sass-lint.yml
files:
include: 'scss/**/*.scss'
options:
formatter: stylish
merge-default-rules: false
rules:
indentation:
- 1
- size: 2
mixins-before-declarations: 1
nesting-depth:
- 1
- max-depth: 4
no-css-comments: 0
no-duplicate-properties:
- 1
-
exclude:
- src
no-empty-rulesets: 1
no-extends: 1
no-ids: 2
no-important: 2
no-misspelled-properties:
- 1
no-vendor-prefixes: 2
placeholder-in-extend: 2
quotes:
- 1
- style: double
space-after-colon:
- 1
- include: true
space-after-comma: 1
space-before-bang:
- 1
- include: true
space-before-brace:
- 1
- include: true
space-before-colon: 1
space-between-parens:
- 1
- include: false
trailing-semicolon: 1
url-quotes: 1
zero-unit: 1