This repository was archived by the owner on Jul 11, 2024. It is now read-only.
forked from hackupc/old-v2-hackupc-landing
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.sass-lint.yml
71 lines (71 loc) · 1.44 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
#########################
## Sass Lint File
#########################
# Linter Options
options:
# Don't merge default rules
merge-default-rules: false
# Set the formatter to 'html'
formatter: stylish
# Output file instead of logging results
# output-file: 'linters/sass-lint.html'
# Raise an error if more than 50 warnings are generated
max-warnings: 50
# File Options
files:
include: 'sass/**/*.s+(a|c)ss'
ignore:
- 'sass/vendor/**/*.*'
# Rule Configuration
rules:
brace-style:
- 1
-
style: 'stroustrup'
class-name-format:
- 2
-
allow-leading-underscore: false
declarations-before-nesting: 2
empty-line-between-blocks: 1
hex-length:
- 1
-
style: long
hex-notation:
- 1
-
style: uppercase
id-name-format:
- 2
-
allow-leading-underscore: false
indentation:
- 2
-
size: tab
mixin-name-format:
- 2
-
allow-leading-underscore: false
no-duplicate-properties: 2
no-empty-rulesets: 1
no-mergeable-selectors: 1
no-misspelled-properties: 2
no-trailing-whitespace: 1
no-trailing-zero: 1
one-declaration-per-line: 2
shorthand-values: 1
space-after-bang: 2
space-after-colon: 2
space-after-comma: 1
space-around-operator: 1
space-before-bang: 1
space-before-brace: 2
space-before-colon: 2
space-between-parens: 2
trailing-semicolon: 2
variable-name-format:
- 2
-
allow-leading-underscore: false