forked from sds/scss-lint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.rubocop.yml
50 lines (36 loc) · 825 Bytes
/
.rubocop.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
AmbiguousRegexpLiteral:
Enabled: false
AccessModifierIndentation:
EnforcedStyle: outdent
AssignmentInCondition:
Enabled: false
# Enforcing this results in a lot of unnecessary indentation.
ClassAndModuleChildren:
Enabled: false
CollectionMethods:
Enabled: false
Documentation:
Exclude:
- 'spec/scss_lint/*'
- 'spec/scss_lint/linter/*'
# Ruby 1.8.7 only supports trailing dots in method chains, but Rubocop still
# reports it as an error for method calls chained onto do...end blocks. That's
# too much noise, so remove it.
DotPosition:
Enabled: false
FormatString:
Enabled: false
IfUnlessModifier:
Enabled: false
LineLength:
Max: 100
MethodLength:
Max: 20
SignalException:
Enabled: false
SpecialGlobalVars:
Enabled: false
TrailingComma:
Enabled: false
Void:
Enabled: false