-
Notifications
You must be signed in to change notification settings - Fork 22
/
.rubocop_todo.yml
99 lines (83 loc) · 2.56 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
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
require: rubocop-rspec
# This configuration was generated by
# `rubocop --auto-gen-config`
# on 2017-03-22 15:27:02 -0400 using RuboCop version 0.42.0.
# 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: 1
Lint/Loop:
Exclude:
- 'lib/browse_everything/driver/google_drive.rb'
# Offense count: 6
Metrics/AbcSize:
Max: 31
# Offense count: 2
Metrics/CyclomaticComplexity:
Max: 7
# Offense count: 10
# Configuration parameters: CountComments.
Metrics/MethodLength:
Max: 28
# Offense count: 1
# Configuration parameters: CountKeywordArgs.
Metrics/ParameterLists:
Max: 7
# Offense count: 2
RSpec/MultipleExpectations:
Max: 2
# Offense count: 1
# Configuration parameters: IgnoreSymbolicNames.
RSpec/VerifiedDoubles:
Exclude:
- 'spec/views/browse_everything/_file.html.erb_spec.rb'
# Offense count: 1
Rails/OutputSafety:
Exclude:
- 'app/helpers/browse_everything_helper.rb'
# Offense count: 11
# Configuration parameters: EnforcedStyle, SupportedStyles.
# SupportedStyles: strict, flexible
Rails/TimeZone:
Exclude:
- 'lib/browse_everything/driver/google_drive.rb'
- 'lib/browse_everything/retriever.rb'
- 'spec/unit/browse_everything_helper_spec.rb'
- 'spec/unit/file_entry_spec.rb'
- 'spec/unit/retriever_spec.rb'
- 'spec/views/browse_everything/_file.html.erb_spec.rb'
# Offense count: 3
# Configuration parameters: EnforcedStyle, SupportedStyles.
# SupportedStyles: nested, compact
Style/ClassAndModuleChildren:
Exclude:
- 'lib/generators/browse_everything/assets_generator.rb'
- 'lib/generators/browse_everything/config_generator.rb'
- 'lib/generators/browse_everything/install_generator.rb'
# Offense count: 18
Style/Documentation:
Enabled: false
# Offense count: 2
# Configuration parameters: MinBodyLength.
Style/GuardClause:
Exclude:
- 'lib/browse_everything/driver/google_drive.rb'
# Offense count: 1
Style/MultilineBlockChain:
Exclude:
- 'lib/browse_everything/driver/google_drive.rb'
# Offense count: 1
# Cop supports --auto-correct.
Layout/MultilineBlockLayout:
Exclude:
- 'spec/unit/dropbox_spec.rb'
# Offense count: 1
# Configuration parameters: NamePrefix, NamePrefixBlacklist, NameWhitelist.
# NamePrefix: is_, has_, have_
# NamePrefixBlacklist: is_, has_, have_
# NameWhitelist: is_a?
Naming/PredicateName:
Exclude:
- 'spec/**/*'
- 'app/helpers/browse_everything_helper.rb'