-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path.sass-lint.yml
48 lines (39 loc) · 927 Bytes
/
.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
# Sass lint from https://github.com/AusDTO/development-at-dto/blob/master/linters/.sass-lint.yml
# Extends defaults: https://raw.githubusercontent.com/sasstools/sass-lint/master/lib/config/sass-lint.yml
options:
formatter: stylish
merge-default-rules: true
files:
include: 'lib/**/*.scss'
ignore:
- 'lib/assets/src/styles/_vendor/**/*.scss'
rules:
# Extends
placeholder-in-extend: 0
# Mixins
mixins-before-declarations: 0
# Disallows
no-css-comments: 0
no-qualifying-elements: 0
no-vendor-prefixes: 0
# Nesting
force-attribute-nesting: 0
force-pseudo-nesting: 0
# Style Guide
border-zero: 0
hex-length: 1
leading-zero: 0
shorthand-values: 0
property-sort-order:
- 2
- order:
- 'concentric'
nesting-depth:
- 2
- max-depth:
- 4
# Name Formats
class-name-format: 0
no-duplicate-properties: 0
no-transition-all: 0
no-url-protocols: 0