-
Notifications
You must be signed in to change notification settings - Fork 1
/
.rubocop.yml
65 lines (50 loc) · 1.17 KB
/
.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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
# Generated by `rubocop --auto-gen-config`
inherit_from: .rubocop_todo.yml
# Exclude temporary files
AllCops:
Exclude:
- tmp/**/*
Lint/AssignmentInCondition:
Enabled: false
Lint/HandleExceptions:
Exclude:
- rakelib/*.rake
- spec/spec_helper.rb
- benchmarks/setup.rb
Metrics/LineLength:
Exclude:
- core.gemspec
Style/TrivialAccessors:
Exclude:
- lib/core.rb
Style/ModuleFunction:
Exclude:
- lib/core.rb
# The enforced style doesn’t match Vim’s defaults
Style/AlignParameters:
Enabled: false
# UTF-8 is perfectly fine in comments
Style/AsciiComments:
Enabled: false
# Allow using braces for value-returning blocks
Style/Blocks:
Enabled: false
# Skip documentation check
Style/Documentation:
Enabled: false
# Early returns have their vices
Style/GuardClause:
Enabled: false
# Multiline block chains are ok
Style/MultilineBlockChain:
Enabled: false
# Even a single escaped slash can be confusing
Style/RegexpLiteral:
MaxSlashes: 0
# Don’t introduce semantic fail/raise distinction
Style/SignalException:
EnforcedStyle: only_raise
# Allow compact style for specs
Style/ClassAndModuleChildren:
Exclude:
- spec/**/*_spec.rb