-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy path.rubocop.yml
112 lines (83 loc) · 2.22 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
require:
- rubocop-rspec
- rubocop-rake
AllCops:
TargetRubyVersion: 2.7
DisplayCopNames: true
NewCops: enable
Exclude:
- bin/rake
- bin/rspec
- bin/rubocop
# Do not sort gems in Gemfile, since we are grouping them by functionality.
Bundler/OrderedGems:
Enabled: false
# Trailing commas are required on multiline method arguments.
Style/TrailingCommaInArguments:
EnforcedStyleForMultiline: comma
# Trailing commas are required in multiline arrays.
Style/TrailingCommaInArrayLiteral:
EnforcedStyleForMultiline: comma
# Trailing commas are required in multiline hashes.
Style/TrailingCommaInHashLiteral:
EnforcedStyleForMultiline: comma
# Allow indenting multiline chained operations.
Layout/MultilineMethodCallIndentation:
EnforcedStyle: indented
Gemspec/RequiredRubyVersion:
Enabled: false
# Limit method length (default is 10).
Metrics/MethodLength:
Max: 15
# Limit line length.
Layout/LineLength:
Max: 80
# Allow ASCII comments (e.g "…").
Style/AsciiComments:
Enabled: false
# Do not comment the class we create, since the name should be self explanatory.
Style/Documentation:
Enabled: false
# Do not verify the length of the blocks in specs.
Metrics/BlockLength:
Exclude:
- spec/**/*
# Prefer `== 0`, `< 0`, `> 0` to `zero?`, `negative?` or `positive?`,
# since they don't exist before Ruby 2.3 or Rails 5 and can be ambiguous.
Style/NumericPredicate:
EnforcedStyle: comparison
# Allow more expectations per example (default 1).
RSpec/MultipleExpectations:
Max: 5
# Allow more group nesting (default 3)
RSpec/NestedGroups:
Max: 5
# Allow longer examples (default 5)
RSpec/ExampleLength:
Max: 15
Layout/EmptyLinesAroundAttributeAccessor:
Enabled: true
Layout/SpaceAroundMethodCallOperator:
Enabled: true
Lint/DeprecatedOpenSSLConstant:
Enabled: true
Lint/MixedRegexpCaptureTypes:
Enabled: true
Lint/RaiseException:
Enabled: true
Lint/StructNewOverride:
Enabled: true
Style/ExponentialNotation:
Enabled: true
Style/HashEachMethods:
Enabled: true
Style/HashTransformKeys:
Enabled: true
Style/HashTransformValues:
Enabled: true
Style/RedundantRegexpCharacterClass:
Enabled: true
Style/RedundantRegexpEscape:
Enabled: true
Style/SlicingWithRange:
Enabled: true