-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
.sass-lint.yml
62 lines (61 loc) · 1.14 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
###################################
## mesh Base sass Lint File
###################################
# Linter Options
# rules @ https://github.com/sasstools/sass-lint/tree/master/docs/rules
options:
# Don't merge default rules
merge-default-rules: false
files:
ignore:
- './node_modules'
# Rule Configuration
rules:
border-zero:
- 1
-
convention: 0
brace-style:
- 2
-
style: '1tbs'
class-name-format:
- 2
- convention: hyphenatedlowercase
empty-args: 2
empty-line-between-blocks:
- 0
# Extends cause trouble
no-extends: 0
mixin-name-format:
- 2
-
convention: hyphenatedlowercase
nesting-depth:
- 1
-
max-depth: 2
no-duplicate-properties: 1
no-empty-rulesets: 2
no-debug: 1
no-ids: 1
no-misspelled-properties: 2
no-vendor-prefixes: 1
one-declaration-per-line: 2
hex-notation:
- 2
-
style: lowercase
indentation:
- 1
-
size: 'tab'
single-line-per-selector: 1
space-around-operator: 2
space-before-brace: 2
space-before-bang: 2
space-before-colon: 2
space-between-parens: 2
space-after-colon: true
zero-unit:
- 2