-
Notifications
You must be signed in to change notification settings - Fork 80
/
Copy path.rubocop_todo.yml
114 lines (97 loc) · 3.06 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
# This configuration was generated by
# `rubocop --auto-gen-config`
# on 2018-05-21 21:54:22 -0400 using RuboCop version 0.56.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
# Configuration parameters: Include.
# Include: **/*.gemfile, **/Gemfile, **/gems.rb
Bundler/DuplicatedGem:
Exclude:
- 'Gemfile'
# Offense count: 2
Lint/AmbiguousBlockAssociation:
Exclude:
- 'spec/neo4j/core/shared_examples/adaptor.rb'
# Offense count: 1
Lint/HandleExceptions:
Exclude:
- 'spec/lib/yard_rspec.rb'
# Offense count: 1
Lint/UselessAssignment:
Exclude:
- 'spec/lib/yard_rspec.rb'
# Offense count: 15
Metrics/AbcSize:
Max: 17
# Offense count: 32
# Configuration parameters: CountComments, ExcludedMethods.
Metrics/BlockLength:
Max: 723
# Offense count: 5
# Configuration parameters: CountComments.
Metrics/ClassLength:
Max: 189
# Offense count: 20
# Configuration parameters: CountComments.
Metrics/MethodLength:
Max: 14
# Offense count: 1
Naming/MemoizedInstanceVariableName:
Exclude:
- 'lib/neo4j/core/cypher_session/adaptors/bolt.rb'
# Offense count: 3
# Configuration parameters: MinNameLength, AllowNamesEndingInNumbers, AllowedNames, ForbiddenNames.
# AllowedNames: io, id, to, by, on, in, at
Naming/UncommunicativeMethodParamName:
Exclude:
- 'lib/neo4j/core/cypher_session/adaptors.rb'
- 'lib/neo4j/core/cypher_session/adaptors/bolt/pack_stream.rb'
- 'spec/neo4j/core/shared_examples/adaptor.rb'
# Offense count: 55
Style/Documentation:
Enabled: false
# Offense count: 1
Style/EvalWithLocation:
Exclude:
- 'spec/neo4j/core/query_spec.rb'
# Offense count: 1
# Configuration parameters: MinBodyLength.
Style/GuardClause:
Exclude:
- 'lib/neo4j/core/cypher_session/adaptors/bolt.rb'
# Offense count: 2
Style/IdenticalConditionalBranches:
Exclude:
- 'lib/neo4j/core/cypher_session/transactions.rb'
# Offense count: 55
# Cop supports --auto-correct.
Style/MutableConstant:
Exclude:
- 'Rakefile'
- 'lib/neo4j/ansi.rb'
- 'lib/neo4j/core/cypher_session/adaptors.rb'
- 'lib/neo4j/core/cypher_session/adaptors/bolt.rb'
- 'lib/neo4j/core/cypher_session/adaptors/bolt/pack_stream.rb'
- 'lib/neo4j/core/cypher_session/adaptors/embedded.rb'
- 'lib/neo4j/core/cypher_session/adaptors/http.rb'
- 'lib/neo4j/core/cypher_session/responses.rb'
- 'lib/neo4j/core/query.rb'
- 'lib/neo4j/core/query_clauses.rb'
- 'lib/neo4j/core/version.rb'
- 'spec/neo4j/core/query_spec.rb'
# Offense count: 2
# Cop supports --auto-correct.
# Configuration parameters: EnforcedStyle.
# SupportedStyles: implicit, explicit
Style/RescueStandardError:
Exclude:
- 'Rakefile'
- 'lib/neo4j/core/cypher_session/adaptors.rb'
# Offense count: 373
# Configuration parameters: AllowHeredoc, AllowURI, URISchemes, IgnoreCopDirectives, IgnoredPatterns.
# URISchemes: http, https
Metrics/LineLength:
Max: 173