-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy path.rubocop.yml
More file actions
34 lines (24 loc) · 739 Bytes
/
.rubocop.yml
File metadata and controls
34 lines (24 loc) · 739 Bytes
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
AllCops:
DisplayCopNames: true
Style/Documentation:
Enabled: false
# Generally all lines are under 80 chars, but sometimes it just makes sense to
# go beyond it for clariy or for output/log entries and it gets annoying and
# ugly having exclusions all over the place.
Metrics/LineLength:
Max: 200
# We should work on cutting these down over time, however if we just run with
# the defaults right now, it creates far too much noise to ever get anything
# useful out of Rubocop.
#
# TODO: Lower levels and address some of the length/complexity issues.
Metrics/AbcSize:
Max: 100
Metrics/MethodLength:
Max: 200
Metrics/ClassLength:
Max: 1000
Metrics/CyclomaticComplexity:
Max: 20
Metrics/PerceivedComplexity:
Max: 20