-
Notifications
You must be signed in to change notification settings - Fork 15
/
.rubocop_todo.yml
59 lines (51 loc) · 1.31 KB
/
.rubocop_todo.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
# This configuration was generated by
# `rubocop --auto-gen-config`
# on 2020-04-07 20:38:28 -0300 using RuboCop version 0.67.2.
# The point is for the user to remove these configuration records
# one by one as the offenses are removed from the code base.
# Note that changes in the inspected code, or installation of new
# versions of RuboCop, may require this file to be generated again.
# Offense count: 2
Metrics/AbcSize:
Max: 54
Exclude:
- 'lib/kovid/historians.rb'
# Offense count: 2
Metrics/BlockLength:
Exclude:
- 'kovid.gemspec'
- 'spec/kovid_spec.rb'
# Offense count: 3
# Configuration parameters: CountComments.
Metrics/ClassLength:
Max: 220
Exclude:
- 'lib/kovid/cli.rb'
- 'lib/kovid/request.rb'
- 'lib/kovid/tablelize.rb'
# Offense count: 2
# Configuration parameters: CountComments, ExcludedMethods.
Metrics/MethodLength:
Max: 44
Exclude:
- 'lib/kovid/historians.rb'
# Offense count: 1
Metrics/PerceivedComplexity:
Max: 8
Exclude:
- 'lib/kovid/historians.rb'
# Offense count: 1
Style/CaseEquality:
Exclude:
- 'lib/kovid/request.rb'
Style/Documentation:
Exclude:
- 'spec/**/*'
- 'test/**/*'
- 'lib/kovid.rb'
- 'lib/kovid/helpers.rb'
# Offense count: 5
Style/MultilineBlockChain:
Exclude:
- 'lib/kovid/historians.rb'
- 'lib/kovid/request.rb'