-
Notifications
You must be signed in to change notification settings - Fork 10
/
.rubocop.yml
64 lines (49 loc) · 1.26 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
# Generated by `rubocop --auto-gen-config`
inherit_from: .rubocop_todo.yml
# It’s quite readable when we know what we are doing
Lint/AssignmentInCondition:
Enabled: false
# No need to handle LoadError in rake
Lint/SuppressedException:
Exclude:
- rakelib/*.rake
- spec/spec_helper.rb
# UTF-8 is perfectly fine in comments
Style/AsciiComments:
Enabled: false
# Allow using braces for value-returning blocks
Style/BlockDelimiters:
Enabled: false
# Documentation checked by Inch CI
Style/Documentation:
Enabled: false
# Early returns have their vices
Style/GuardClause:
Enabled: false
# Need to be skipped for >-> usage
Style/Lambda:
Enabled: false
# Multiline block chains are ok
Style/MultilineBlockChain:
Enabled: false
# Don’t introduce semantic fail/raise distinction
Style/SignalException:
EnforcedStyle: only_raise
# Need to be skipped for >-> usage
Style/SpaceAroundOperators:
Enabled: false
# Accept both single and double quotes
Style/StringLiterals:
Enabled: false
# Allow def self.foo; @foo; end
Style/TrivialAccessors:
Enabled: false
# Allow rom-csv
Style/FileName:
Enabled: false
# Allow logical `or`/`and` in conditionals
Style/AndOr:
EnforcedStyle: conditionals
Metrics/BlockLength:
Exclude:
- 'spec/**/*_spec.rb'