-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.sass-lint.yml
81 lines (81 loc) · 1.58 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
72
73
74
75
76
77
78
79
80
81
# Linter Options
# https://github.com/sasstools/sass-lint/tree/master/docs/rules
# Copy of https://github.com/AgriLife/agriflex4/blob/master/.sass-lint.yml
options:
# Don't merge default rules
merge-default-rules: false
# File Options
files:
include: 'css/src/**/*.s+(a|c)ss'
ignore:
- 'sass/vendor/**/*.*'
# Rule Configuration
rules:
brace-style:
- 2
- style: '1tbs'
- allow-single-line: false
no-color-keywords: 2
no-duplicate-properties:
- 2
-
exclude:
- background
- background-color
- border
- white-space
no-mergeable-selectors: 2
no-misspelled-properties:
- 2
-
'extra-properties':
- 'ms-filter'
- '*text-indent'
- '*zoom'
space-after-colon: 1
space-after-comma: 1
trailing-semicolon: 1
extends-before-mixins: 2
no-warn: 1
no-debug: 1
no-important: 1
hex-notation:
- 2
-
style: uppercase
indentation:
- 1
-
size: tab
quotes:
- 1
-
style: double
border-zero: 0
empty-args: 0
empty-line-between-blocks: 1
final-newline: 1
force-element-nesting: 0
force-pseudo-nesting: 0
hex-length: 1
mixins-before-declarations: 1
nesting-depth: 0
no-color-literals: 0
no-css-comments: 0
no-empty-rulesets: 1
no-ids: 0
no-qualifying-elements: 0
no-trailing-whitespace: 1
no-vendor-prefixes: 1
property-sort-order: 0
property-units:
- 1
-
per-property: { transition: ['s'] }
single-line-per-selector: 1
space-before-brace: 1
zero-unit: 0
max-line-length:
- 1
-
length: 100