necropsy 0.2.0 → 0.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +26 -0
- data/MEASUREMENTS.md +27 -0
- data/README.md +182 -17
- data/bench/README.md +92 -0
- data/bench/audit.rb +113 -0
- data/bench/audits/0.2.1/audit.json +501 -0
- data/bench/audits/0.2.1/audit.md +55 -0
- data/bench/audits/0.2.1/baseline_performance.yml +16 -0
- data/bench/audits/0.2.1/config.yml +42 -0
- data/bench/audits/0.2.1/review.yml +56 -0
- data/bench/audits/0.2.1/review_queue.yml +3651 -0
- data/bench/corpora/v1/README.md +30 -0
- data/bench/corpora/v1/labels.yml +37 -0
- data/bench/corpora/v1/manifest.yml +63 -0
- data/bench/corpora/v1/rubocop.necropsy.yml +7 -0
- data/bench/corpora/v1/self.necropsy.yml +8 -0
- data/bench/corpora/v1/tools/debride.yml +42 -0
- data/bench/corpora/v1/tools/spoom.yml +12 -0
- data/bench/corpora/v1/tools/type_aware.yml +11 -0
- data/bench/golden/v1/candidate_union.json +21918 -0
- data/bench/golden/v1/metadata.json +12 -0
- data/bench/golden/v1/reports/dynamic_evidence.json +146 -0
- data/bench/golden/v1/reports/plain_ruby.json +135 -0
- data/bench/golden/v1/reports/rails.json +176 -0
- data/bench/golden/v1/reports/rubocop_1_75_0.json +26848 -0
- data/bench/golden/v1/reports/self.json +3449 -0
- data/bench/review_queue.rb +35 -0
- data/bench/run.rb +31 -0
- data/bench/schema/candidate-union-v1.schema.json +70 -0
- data/docs/impv_implementation_matrix.md +179 -0
- data/docs/migrations/0.2.1.md +57 -0
- data/docs/migrations/0.3.0.md +207 -0
- data/docs/migrations/0.4.0.md +13 -0
- data/docs/necropsy_performance_adr.md +43 -0
- data/docs/necropsy_scope_decisions.md +58 -0
- data/docs/necropsy_type_facts_adr.md +22 -0
- data/gemfiles/prism_min.gemfile +9 -0
- data/gemfiles/prism_min.gemfile.lock +50 -0
- data/lib/necropsy/analyzer.rb +121 -2
- data/lib/necropsy/analyzers/dynamic/coverage_collector.rb +69 -17
- data/lib/necropsy/analyzers/dynamic/coverage_importer.rb +99 -9
- data/lib/necropsy/analyzers/dynamic/coverband_importer.rb +69 -299
- data/lib/necropsy/analyzers/dynamic/coverband_payload_set.rb +149 -0
- data/lib/necropsy/analyzers/dynamic/observation_policy.rb +96 -0
- data/lib/necropsy/analyzers/dynamic/redis_input_limits.rb +121 -0
- data/lib/necropsy/analyzers/dynamic/redis_nonblocking_io.rb +94 -0
- data/lib/necropsy/analyzers/dynamic/redis_payload_loader.rb +165 -0
- data/lib/necropsy/analyzers/dynamic/redis_transport.rb +217 -0
- data/lib/necropsy/analyzers/dynamic/runtime_reference.rb +96 -0
- data/lib/necropsy/analyzers/dynamic/trace_point_collector.rb +133 -23
- data/lib/necropsy/analyzers/dynamic/trace_point_importer.rb +3 -1
- data/lib/necropsy/analyzers/legacy_result_adapter.rb +226 -0
- data/lib/necropsy/analyzers/static/cha.rb +33 -73
- data/lib/necropsy/analyzers/static/name_resolution.rb +133 -12
- data/lib/necropsy/analyzers/static/rta.rb +237 -29
- data/lib/necropsy/ast_scanner/call_recording.rb +149 -30
- data/lib/necropsy/ast_scanner/call_site_creation.rb +54 -0
- data/lib/necropsy/ast_scanner/definition_creation.rb +43 -0
- data/lib/necropsy/ast_scanner/dsl_macros.rb +431 -41
- data/lib/necropsy/ast_scanner/method_definitions.rb +232 -50
- data/lib/necropsy/ast_scanner/references.rb +43 -9
- data/lib/necropsy/ast_scanner/ruby_semantics.rb +101 -15
- data/lib/necropsy/ast_scanner/traversal.rb +234 -71
- data/lib/necropsy/ast_scanner/value_definitions.rb +23 -13
- data/lib/necropsy/ast_scanner.rb +67 -6
- data/lib/necropsy/bench/candidate_union.rb +555 -0
- data/lib/necropsy/bench/claim_gate.rb +112 -0
- data/lib/necropsy/bench/evaluator.rb +329 -16
- data/lib/necropsy/bench/finding_facts.rb +152 -0
- data/lib/necropsy/bench/precision_gate.rb +144 -0
- data/lib/necropsy/bench/release_audit/adversarial_runner.rb +56 -0
- data/lib/necropsy/bench/release_audit/artifact_writer.rb +112 -0
- data/lib/necropsy/bench/release_audit/config_validator.rb +112 -0
- data/lib/necropsy/bench/release_audit/git_snapshot.rb +36 -0
- data/lib/necropsy/bench/release_audit/performance_gate.rb +165 -0
- data/lib/necropsy/bench/release_audit/run_provenance.rb +133 -0
- data/lib/necropsy/bench/release_audit.rb +360 -0
- data/lib/necropsy/bench/report_normalizer.rb +140 -0
- data/lib/necropsy/bench/review_queue.rb +154 -0
- data/lib/necropsy/bench/safety_mutation_harness.rb +59 -0
- data/lib/necropsy/bench/seed_runner.rb +408 -0
- data/lib/necropsy/bounded_canonicalizer.rb +218 -0
- data/lib/necropsy/cache/scan_cache.rb +85 -17
- data/lib/necropsy/call_site_identity.rb +54 -0
- data/lib/necropsy/cli.rb +220 -33
- data/lib/necropsy/clock.rb +40 -0
- data/lib/necropsy/confidence/scorer.rb +103 -58
- data/lib/necropsy/configuration.rb +224 -21
- data/lib/necropsy/convention_rules.rb +138 -0
- data/lib/necropsy/definition_identity/canonical_digest.rb +278 -0
- data/lib/necropsy/definition_identity.rb +37 -0
- data/lib/necropsy/diagnostics.rb +176 -36
- data/lib/necropsy/embedded_ruby.rb +55 -0
- data/lib/necropsy/entry_points/plain.rb +111 -10
- data/lib/necropsy/entry_points/rails.rb +322 -41
- data/lib/necropsy/entry_points/test.rb +6 -1
- data/lib/necropsy/flow_interpreter.rb +460 -0
- data/lib/necropsy/graph/blocker_matching.rb +338 -0
- data/lib/necropsy/graph/call_graph.rb +1099 -109
- data/lib/necropsy/graph/definition_index.rb +149 -0
- data/lib/necropsy/graph/dynamic_evidence_tracking.rb +206 -0
- data/lib/necropsy/graph/evidence_store.rb +213 -0
- data/lib/necropsy/graph/resolution_store.rb +497 -0
- data/lib/necropsy/graph_self_check.rb +79 -0
- data/lib/necropsy/guardrail/baseline.rb +350 -13
- data/lib/necropsy/guardrail/quarantine.rb +94 -9
- data/lib/necropsy/load_graph.rb +206 -0
- data/lib/necropsy/models.rb +878 -13
- data/lib/necropsy/performance_profiler.rb +108 -0
- data/lib/necropsy/project.rb +327 -25
- data/lib/necropsy/reachability/engine.rb +54 -13
- data/lib/necropsy/reference_barrier.rb +458 -0
- data/lib/necropsy/report.rb +113 -4
- data/lib/necropsy/reporter.rb +431 -15
- data/lib/necropsy/runner.rb +233 -18
- data/lib/necropsy/runtime_feedback.rb +136 -0
- data/lib/necropsy/semantics_matrix.rb +153 -0
- data/lib/necropsy/type_facts.rb +53 -0
- data/lib/necropsy/version.rb +1 -1
- data/lib/necropsy/why_not_explanation.rb +436 -0
- data/lib/necropsy/why_not_renderer.rb +197 -0
- data/lib/necropsy/world_policy.rb +90 -0
- data/lib/necropsy.rb +35 -2
- data/schema/necropsy-report-v2.schema.json +366 -0
- metadata +85 -1
|
@@ -0,0 +1,3651 @@
|
|
|
1
|
+
---
|
|
2
|
+
schema_version: 1
|
|
3
|
+
status: pending
|
|
4
|
+
selection: actionable findings, confidence ascending, then corpus and identity
|
|
5
|
+
target_reviewed_high_candidates: 300
|
|
6
|
+
available_actionable_candidates: 636
|
|
7
|
+
queued_candidates: 300
|
|
8
|
+
reviewed_candidates: 0
|
|
9
|
+
reviewed_high_candidates: 0
|
|
10
|
+
pending_candidates: 300
|
|
11
|
+
pending_high_candidates: 0
|
|
12
|
+
target_shortfall: 300
|
|
13
|
+
claim_gate_passed: false
|
|
14
|
+
corpora:
|
|
15
|
+
dynamic_evidence:
|
|
16
|
+
available_candidates: 4
|
|
17
|
+
queued_candidates: 4
|
|
18
|
+
queued_high_candidates: 0
|
|
19
|
+
plain_ruby:
|
|
20
|
+
available_candidates: 0
|
|
21
|
+
queued_candidates: 0
|
|
22
|
+
queued_high_candidates: 0
|
|
23
|
+
rails:
|
|
24
|
+
available_candidates: 3
|
|
25
|
+
queued_candidates: 3
|
|
26
|
+
queued_high_candidates: 0
|
|
27
|
+
rubocop_1_75_0:
|
|
28
|
+
available_candidates: 547
|
|
29
|
+
queued_candidates: 281
|
|
30
|
+
queued_high_candidates: 0
|
|
31
|
+
self:
|
|
32
|
+
available_candidates: 82
|
|
33
|
+
queued_candidates: 12
|
|
34
|
+
queued_high_candidates: 0
|
|
35
|
+
provenance:
|
|
36
|
+
dynamic_evidence:
|
|
37
|
+
sha256: 4d8756d0abec2f6dc2df9b8f86a91fb729692a16f0f2aec1501d45f7674e86f9
|
|
38
|
+
finding_count: 4
|
|
39
|
+
plain_ruby:
|
|
40
|
+
sha256: b0701e1e0e909e57fbb4e56ccecaaf558386cecd380ecd0beb153779a0ea11a8
|
|
41
|
+
finding_count: 3
|
|
42
|
+
rails:
|
|
43
|
+
sha256: f7f99bfa0e4a24bf07f1ca154d516c5168a5ad89024beaaae2dec01116bcc065
|
|
44
|
+
finding_count: 4
|
|
45
|
+
rubocop_1_75_0:
|
|
46
|
+
sha256: 5795a3b5d5ab31d52d10ddd33338fd8e6e9e53f25b412c1804cbf42640a5abe5
|
|
47
|
+
finding_count: 1122
|
|
48
|
+
self:
|
|
49
|
+
sha256: 1dfc3dc90978e2aea9e85e41c0928b6bf6aeecb6a79cee83c29c2d6c514dfe9c
|
|
50
|
+
finding_count: 147
|
|
51
|
+
entries:
|
|
52
|
+
- corpus: dynamic_evidence
|
|
53
|
+
id: DynamicSeed#dead
|
|
54
|
+
definition_id: def:v1:462aacae140d5237759b4516e121ed032ed65edd9e9460e5c2c0aaced5d3f05b
|
|
55
|
+
path: lib/dynamic_seed.rb
|
|
56
|
+
line: 16
|
|
57
|
+
end_line: 18
|
|
58
|
+
loc: 3
|
|
59
|
+
state: unreachable
|
|
60
|
+
confidence: medium
|
|
61
|
+
category: unreachable
|
|
62
|
+
status: pending
|
|
63
|
+
review_class: candidate
|
|
64
|
+
- corpus: dynamic_evidence
|
|
65
|
+
id: DynamicSeed#helper
|
|
66
|
+
definition_id: def:v1:b5057efa66e7850ebbcc22e4c3d19accd0e1537ca2b2f4b6bee7614d3ca8518e
|
|
67
|
+
path: lib/dynamic_seed.rb
|
|
68
|
+
line: 8
|
|
69
|
+
end_line: 10
|
|
70
|
+
loc: 3
|
|
71
|
+
state: unreachable
|
|
72
|
+
confidence: medium
|
|
73
|
+
category: unreachable
|
|
74
|
+
status: pending
|
|
75
|
+
review_class: candidate
|
|
76
|
+
- corpus: dynamic_evidence
|
|
77
|
+
id: DynamicSeed#public_hook
|
|
78
|
+
definition_id: def:v1:2f73f908d6c20c6c52ae5d106e2f4efda727c0f2227c7fcbd1a2a529990c05f7
|
|
79
|
+
path: lib/dynamic_seed.rb
|
|
80
|
+
line: 20
|
|
81
|
+
end_line: 22
|
|
82
|
+
loc: 3
|
|
83
|
+
state: unreachable
|
|
84
|
+
confidence: medium
|
|
85
|
+
category: unreachable
|
|
86
|
+
status: pending
|
|
87
|
+
review_class: candidate
|
|
88
|
+
- corpus: dynamic_evidence
|
|
89
|
+
id: DynamicSeed#run
|
|
90
|
+
definition_id: def:v1:62bc0fd1e53699ef877f7dec4e15fc86e37fbeed0a23abd58ee4fe7d34bd010d
|
|
91
|
+
path: lib/dynamic_seed.rb
|
|
92
|
+
line: 4
|
|
93
|
+
end_line: 6
|
|
94
|
+
loc: 3
|
|
95
|
+
state: unreachable
|
|
96
|
+
confidence: medium
|
|
97
|
+
category: unreachable
|
|
98
|
+
status: pending
|
|
99
|
+
review_class: candidate
|
|
100
|
+
- corpus: rails
|
|
101
|
+
id: Sample::Widget#alias_live
|
|
102
|
+
definition_id: def:v1:116fa7b0d782f572553497fc44cdfba132618efcdbfff2694f9d7b540b4003d2
|
|
103
|
+
path: app/models/widget.rb
|
|
104
|
+
line: 37
|
|
105
|
+
end_line: 37
|
|
106
|
+
loc: 1
|
|
107
|
+
state: unreachable
|
|
108
|
+
confidence: medium
|
|
109
|
+
category: generated_method
|
|
110
|
+
status: pending
|
|
111
|
+
review_class: candidate
|
|
112
|
+
- corpus: rails
|
|
113
|
+
id: Sample::Widget#dead_model
|
|
114
|
+
definition_id: def:v1:4eb57429e3a250519819576bc125a4271340303473f23bc6d5c0e4192cf89819
|
|
115
|
+
path: app/models/widget.rb
|
|
116
|
+
line: 51
|
|
117
|
+
end_line: 53
|
|
118
|
+
loc: 3
|
|
119
|
+
state: unreachable
|
|
120
|
+
confidence: medium
|
|
121
|
+
category: unreachable
|
|
122
|
+
status: pending
|
|
123
|
+
review_class: candidate
|
|
124
|
+
- corpus: rubocop_1_75_0
|
|
125
|
+
id: RuboCop::Cop::Cop#suppress_clobbering
|
|
126
|
+
definition_id: def:v1:eedf043e8d807c1477f7c0f315b6f4bd0fcad421e8b06468fcd935f4a562978a
|
|
127
|
+
path: lib/rubocop/cop/cop.rb
|
|
128
|
+
line: 177
|
|
129
|
+
end_line: 181
|
|
130
|
+
loc: 5
|
|
131
|
+
state: unreachable
|
|
132
|
+
confidence: medium
|
|
133
|
+
category: unreachable
|
|
134
|
+
status: pending
|
|
135
|
+
review_class: candidate
|
|
136
|
+
- corpus: rubocop_1_75_0
|
|
137
|
+
id: RuboCop::Cop::Layout::FirstArrayElementIndentation#base_description
|
|
138
|
+
definition_id: def:v1:77141a57fedc8cb2f4529fa73e23a61722296213f0b55ba81333d5dc19e536be
|
|
139
|
+
path: lib/rubocop/cop/layout/first_array_element_indentation.rb
|
|
140
|
+
line: 146
|
|
141
|
+
end_line: 157
|
|
142
|
+
loc: 12
|
|
143
|
+
state: unreachable
|
|
144
|
+
confidence: medium
|
|
145
|
+
category: unreachable
|
|
146
|
+
status: pending
|
|
147
|
+
review_class: candidate
|
|
148
|
+
- corpus: rubocop_1_75_0
|
|
149
|
+
id: RuboCop::Cop::Layout::FirstHashElementIndentation#base_description
|
|
150
|
+
definition_id: def:v1:bbd13d398f1181a0bc857d3f515edbdbf0c39b502faded3da8eba8c2e44cf4b2
|
|
151
|
+
path: lib/rubocop/cop/layout/first_hash_element_indentation.rb
|
|
152
|
+
line: 191
|
|
153
|
+
end_line: 202
|
|
154
|
+
loc: 12
|
|
155
|
+
state: unreachable
|
|
156
|
+
confidence: medium
|
|
157
|
+
category: unreachable
|
|
158
|
+
status: pending
|
|
159
|
+
review_class: candidate
|
|
160
|
+
- corpus: rubocop_1_75_0
|
|
161
|
+
id: RuboCop::Cop::Layout::FirstParameterIndentation#brace_alignment_style
|
|
162
|
+
definition_id: def:v1:323743ff6a2c564245c78ce94e1a809f834e8c00750775d6be0867769bf3c07a
|
|
163
|
+
path: lib/rubocop/cop/layout/first_parameter_indentation.rb
|
|
164
|
+
line: 67
|
|
165
|
+
end_line: 69
|
|
166
|
+
loc: 3
|
|
167
|
+
state: unreachable
|
|
168
|
+
confidence: medium
|
|
169
|
+
category: unreachable
|
|
170
|
+
status: pending
|
|
171
|
+
review_class: candidate
|
|
172
|
+
- corpus: rubocop_1_75_0
|
|
173
|
+
id: RuboCop::Cop::Layout::LineLength#allow_heredoc?
|
|
174
|
+
definition_id: def:v1:893cd0abe29db32136949b7362523245f5d45d323f28f48eda0f489366eb647c
|
|
175
|
+
path: lib/rubocop/cop/layout/line_length.rb
|
|
176
|
+
line: 309
|
|
177
|
+
end_line: 311
|
|
178
|
+
loc: 3
|
|
179
|
+
state: unreachable
|
|
180
|
+
confidence: medium
|
|
181
|
+
category: unreachable
|
|
182
|
+
status: pending
|
|
183
|
+
review_class: candidate
|
|
184
|
+
- corpus: rubocop_1_75_0
|
|
185
|
+
id: RuboCop::Cop::Layout::MultilineMethodCallIndentation#alignment_base
|
|
186
|
+
definition_id: def:v1:b530e95b188d6466138b713ac89f3d8c788dcda23708ccc6312b7d18c29d1a27
|
|
187
|
+
path: lib/rubocop/cop/layout/multiline_method_call_indentation.rb
|
|
188
|
+
line: 152
|
|
189
|
+
end_line: 161
|
|
190
|
+
loc: 10
|
|
191
|
+
state: unreachable
|
|
192
|
+
confidence: medium
|
|
193
|
+
category: unreachable
|
|
194
|
+
status: pending
|
|
195
|
+
review_class: candidate
|
|
196
|
+
- corpus: self
|
|
197
|
+
id: Necropsy::TypeProvider.facts
|
|
198
|
+
definition_id: def:v1:8a68d5f5c61c896f15f91fc16b88c2d7cdf8a75bb9a50f802d2d6fff5c89115a
|
|
199
|
+
path: lib/necropsy/type_facts.rb
|
|
200
|
+
line: 49
|
|
201
|
+
end_line: 51
|
|
202
|
+
loc: 3
|
|
203
|
+
state: unreachable
|
|
204
|
+
confidence: medium
|
|
205
|
+
category: generated_method
|
|
206
|
+
status: pending
|
|
207
|
+
review_class: candidate
|
|
208
|
+
- corpus: self
|
|
209
|
+
id: Necropsy::Analyzers::Dynamic::CoverageCollector#coverage_result
|
|
210
|
+
definition_id: def:v1:2c408254cc594761bbc40efa2956d53b6de310ad62bdfa86e30eeada4fef5f5a
|
|
211
|
+
path: lib/necropsy/analyzers/dynamic/coverage_collector.rb
|
|
212
|
+
line: 66
|
|
213
|
+
end_line: 77
|
|
214
|
+
loc: 12
|
|
215
|
+
state: unreachable
|
|
216
|
+
confidence: medium
|
|
217
|
+
category: unreachable
|
|
218
|
+
status: pending
|
|
219
|
+
review_class: candidate
|
|
220
|
+
- corpus: self
|
|
221
|
+
id: Necropsy::Analyzers::Dynamic::CoverageCollector#start_coverage
|
|
222
|
+
definition_id: def:v1:078dcf1060d215c37d17a654940f2ccad64d574cd76a7ef5037ebd6196247b5e
|
|
223
|
+
path: lib/necropsy/analyzers/dynamic/coverage_collector.rb
|
|
224
|
+
line: 59
|
|
225
|
+
end_line: 64
|
|
226
|
+
loc: 6
|
|
227
|
+
state: unreachable
|
|
228
|
+
confidence: medium
|
|
229
|
+
category: unreachable
|
|
230
|
+
status: pending
|
|
231
|
+
review_class: candidate
|
|
232
|
+
- corpus: self
|
|
233
|
+
id: Necropsy::Bench::ReleaseAudit::RunProvenance#capture_source!
|
|
234
|
+
definition_id: def:v1:c563db469c679d61f8664566e7435522b71623caff054645e81c50142464a814
|
|
235
|
+
path: lib/necropsy/bench/release_audit/run_provenance.rb
|
|
236
|
+
line: 22
|
|
237
|
+
end_line: 31
|
|
238
|
+
loc: 10
|
|
239
|
+
state: unreachable
|
|
240
|
+
confidence: medium
|
|
241
|
+
category: unreachable
|
|
242
|
+
status: pending
|
|
243
|
+
review_class: candidate
|
|
244
|
+
- corpus: self
|
|
245
|
+
id: Necropsy::BoundedCanonicalizer#encoded_string
|
|
246
|
+
definition_id: def:v1:66d7b57a76e88a9a4999c276fdd149741c0d5b550ec9d4a3eb0d58a43137f6a6
|
|
247
|
+
path: lib/necropsy/bounded_canonicalizer.rb
|
|
248
|
+
line: 150
|
|
249
|
+
end_line: 152
|
|
250
|
+
loc: 3
|
|
251
|
+
state: unreachable
|
|
252
|
+
confidence: medium
|
|
253
|
+
category: unreachable
|
|
254
|
+
status: pending
|
|
255
|
+
review_class: candidate
|
|
256
|
+
- corpus: self
|
|
257
|
+
id: Necropsy::BoundedCanonicalizer#process_object_complete
|
|
258
|
+
definition_id: def:v1:2b228c0b059990d69845afbdb750a8e507bb1c9bb87d25c6a47cca092e170ef2
|
|
259
|
+
path: lib/necropsy/bounded_canonicalizer.rb
|
|
260
|
+
line: 141
|
|
261
|
+
end_line: 144
|
|
262
|
+
loc: 4
|
|
263
|
+
state: unreachable
|
|
264
|
+
confidence: medium
|
|
265
|
+
category: unreachable
|
|
266
|
+
status: pending
|
|
267
|
+
review_class: candidate
|
|
268
|
+
- corpus: self
|
|
269
|
+
id: Necropsy::BoundedCanonicalizer#process_raw
|
|
270
|
+
definition_id: def:v1:55d7395cdfe126022c7239a3c5bd52a623c3f948d3b7c438478b228c42736e0a
|
|
271
|
+
path: lib/necropsy/bounded_canonicalizer.rb
|
|
272
|
+
line: 146
|
|
273
|
+
end_line: 148
|
|
274
|
+
loc: 3
|
|
275
|
+
state: unreachable
|
|
276
|
+
confidence: medium
|
|
277
|
+
category: unreachable
|
|
278
|
+
status: pending
|
|
279
|
+
review_class: candidate
|
|
280
|
+
- corpus: self
|
|
281
|
+
id: Necropsy::BoundedCanonicalizer#process_value
|
|
282
|
+
definition_id: def:v1:52107371edae3671b0d81c23d96710bf7d3b64ca6158d07302ffd4e86c60abb6
|
|
283
|
+
path: lib/necropsy/bounded_canonicalizer.rb
|
|
284
|
+
line: 62
|
|
285
|
+
end_line: 77
|
|
286
|
+
loc: 16
|
|
287
|
+
state: unreachable
|
|
288
|
+
confidence: medium
|
|
289
|
+
category: unreachable
|
|
290
|
+
status: pending
|
|
291
|
+
review_class: candidate
|
|
292
|
+
- corpus: self
|
|
293
|
+
id: Necropsy::CallSiteIdentity#legacy_id
|
|
294
|
+
definition_id: def:v1:13d3a437359541fee89b3537c70adc865b0219cdc4a07dad42f5b85bd2601f5e
|
|
295
|
+
path: lib/necropsy/call_site_identity.rb
|
|
296
|
+
line: 39
|
|
297
|
+
end_line: 45
|
|
298
|
+
loc: 7
|
|
299
|
+
state: unreachable
|
|
300
|
+
confidence: medium
|
|
301
|
+
category: unreachable
|
|
302
|
+
status: pending
|
|
303
|
+
review_class: candidate
|
|
304
|
+
- corpus: self
|
|
305
|
+
id: Necropsy::Configuration#include_paths
|
|
306
|
+
definition_id: def:v1:1d24927a239a37fd7260adb630556b6863b12e2b4986e83d4dca54c197e57863
|
|
307
|
+
path: lib/necropsy/configuration.rb
|
|
308
|
+
line: 195
|
|
309
|
+
end_line: 197
|
|
310
|
+
loc: 3
|
|
311
|
+
state: unreachable
|
|
312
|
+
confidence: medium
|
|
313
|
+
category: unreachable
|
|
314
|
+
status: pending
|
|
315
|
+
review_class: candidate
|
|
316
|
+
- corpus: self
|
|
317
|
+
id: Necropsy::EntryPoints::Rails#helper_referenced?
|
|
318
|
+
definition_id: def:v1:4c1d5f1fb513a949de15428bb0f1785473b061fe301d322f4d4fcd3b178441c7
|
|
319
|
+
path: lib/necropsy/entry_points/rails.rb
|
|
320
|
+
line: 399
|
|
321
|
+
end_line: 401
|
|
322
|
+
loc: 3
|
|
323
|
+
state: unreachable
|
|
324
|
+
confidence: medium
|
|
325
|
+
category: unreachable
|
|
326
|
+
status: pending
|
|
327
|
+
review_class: candidate
|
|
328
|
+
- corpus: self
|
|
329
|
+
id: Necropsy::TypeProvider#facts
|
|
330
|
+
definition_id: def:v1:fedd149b6904c477e7c9d2a10652c631e159df73a5375efbc185c1c864921a89
|
|
331
|
+
path: lib/necropsy/type_facts.rb
|
|
332
|
+
line: 49
|
|
333
|
+
end_line: 51
|
|
334
|
+
loc: 3
|
|
335
|
+
state: unreachable
|
|
336
|
+
confidence: medium
|
|
337
|
+
category: unreachable
|
|
338
|
+
status: pending
|
|
339
|
+
review_class: candidate
|
|
340
|
+
- corpus: rails
|
|
341
|
+
id: Sample::Widget#<=>
|
|
342
|
+
definition_id: def:v1:d785fc9e7140c3c1b0231b4b81f69bef10f93cf597e7edc8fada0bd37aa3ea83
|
|
343
|
+
path: app/models/widget.rb
|
|
344
|
+
line: 43
|
|
345
|
+
end_line: 45
|
|
346
|
+
loc: 3
|
|
347
|
+
state: unreachable
|
|
348
|
+
confidence: low
|
|
349
|
+
category: unreachable
|
|
350
|
+
status: pending
|
|
351
|
+
review_class: candidate
|
|
352
|
+
- corpus: rubocop_1_75_0
|
|
353
|
+
id: RuboCop::Cop::Layout::LineLength#breakable_range
|
|
354
|
+
definition_id: def:v1:58bab7786ad7ff63b85c82dcd7dd55effe9834c2595690986dcd6041c6fdfeff
|
|
355
|
+
path: lib/rubocop/cop/layout/line_length.rb
|
|
356
|
+
line: 112
|
|
357
|
+
end_line: 112
|
|
358
|
+
loc: 1
|
|
359
|
+
state: unreachable
|
|
360
|
+
confidence: low
|
|
361
|
+
category: generated_method
|
|
362
|
+
status: pending
|
|
363
|
+
review_class: candidate
|
|
364
|
+
- corpus: rubocop_1_75_0
|
|
365
|
+
id: RuboCop::Cop::Layout::LineLength#breakable_range=
|
|
366
|
+
definition_id: def:v1:2bede5f0e2416f94d86cf1971613b8262ebefffac217ba3aeb57fe784d6c92ff
|
|
367
|
+
path: lib/rubocop/cop/layout/line_length.rb
|
|
368
|
+
line: 112
|
|
369
|
+
end_line: 112
|
|
370
|
+
loc: 1
|
|
371
|
+
state: unreachable
|
|
372
|
+
confidence: low
|
|
373
|
+
category: generated_method
|
|
374
|
+
status: pending
|
|
375
|
+
review_class: candidate
|
|
376
|
+
- corpus: rubocop_1_75_0
|
|
377
|
+
id: RuboCop::Cop::Base#annotate
|
|
378
|
+
definition_id: def:v1:d7c9fb1d2295415770a0804246dd3f562e1be0ba6855b7a458698a8c40fbe1c6
|
|
379
|
+
path: lib/rubocop/cop/base.rb
|
|
380
|
+
line: 485
|
|
381
|
+
end_line: 489
|
|
382
|
+
loc: 5
|
|
383
|
+
state: unreachable
|
|
384
|
+
confidence: low
|
|
385
|
+
category: unreachable
|
|
386
|
+
status: pending
|
|
387
|
+
review_class: candidate
|
|
388
|
+
- corpus: rubocop_1_75_0
|
|
389
|
+
id: RuboCop::Cop::Base#apply_correction
|
|
390
|
+
definition_id: def:v1:bc60c01965cfe572ed48e1e80a5bfdf3e96756972ec2e2ff6ef0a26a3399aacf
|
|
391
|
+
path: lib/rubocop/cop/base.rb
|
|
392
|
+
line: 379
|
|
393
|
+
end_line: 381
|
|
394
|
+
loc: 3
|
|
395
|
+
state: unreachable
|
|
396
|
+
confidence: low
|
|
397
|
+
category: unreachable
|
|
398
|
+
status: pending
|
|
399
|
+
review_class: candidate
|
|
400
|
+
- corpus: rubocop_1_75_0
|
|
401
|
+
id: RuboCop::Cop::Base#attempt_correction
|
|
402
|
+
definition_id: def:v1:2d3f2dc89927bb4e9d517455a49085990238e7ad229a3bed8f1699fad411c19a
|
|
403
|
+
path: lib/rubocop/cop/base.rb
|
|
404
|
+
line: 449
|
|
405
|
+
end_line: 461
|
|
406
|
+
loc: 13
|
|
407
|
+
state: unreachable
|
|
408
|
+
confidence: low
|
|
409
|
+
category: unreachable
|
|
410
|
+
status: pending
|
|
411
|
+
review_class: candidate
|
|
412
|
+
- corpus: rubocop_1_75_0
|
|
413
|
+
id: RuboCop::Cop::Base#callback_argument
|
|
414
|
+
definition_id: def:v1:e51a333f286388f2d07322e5a3c92cf60f37d309d2267e00a7605e7c3bbca0b3
|
|
415
|
+
path: lib/rubocop/cop/base.rb
|
|
416
|
+
line: 375
|
|
417
|
+
end_line: 377
|
|
418
|
+
loc: 3
|
|
419
|
+
state: unreachable
|
|
420
|
+
confidence: low
|
|
421
|
+
category: unreachable
|
|
422
|
+
status: pending
|
|
423
|
+
review_class: candidate
|
|
424
|
+
- corpus: rubocop_1_75_0
|
|
425
|
+
id: RuboCop::Cop::Base#complete_investigation
|
|
426
|
+
definition_id: def:v1:a7830bd0cca257f88f0868617a8ba2eee406997c397a9b83324097769909f115
|
|
427
|
+
path: lib/rubocop/cop/base.rb
|
|
428
|
+
line: 408
|
|
429
|
+
end_line: 414
|
|
430
|
+
loc: 7
|
|
431
|
+
state: unreachable
|
|
432
|
+
confidence: low
|
|
433
|
+
category: unreachable
|
|
434
|
+
status: pending
|
|
435
|
+
review_class: candidate
|
|
436
|
+
- corpus: rubocop_1_75_0
|
|
437
|
+
id: RuboCop::Cop::Base#correct
|
|
438
|
+
definition_id: def:v1:953cf0bdb954b6f61453fa27f49f50b3d2ad71570bc741c30216785ff382b966
|
|
439
|
+
path: lib/rubocop/cop/base.rb
|
|
440
|
+
line: 423
|
|
441
|
+
end_line: 435
|
|
442
|
+
loc: 13
|
|
443
|
+
state: unreachable
|
|
444
|
+
confidence: low
|
|
445
|
+
category: unreachable
|
|
446
|
+
status: pending
|
|
447
|
+
review_class: candidate
|
|
448
|
+
- corpus: rubocop_1_75_0
|
|
449
|
+
id: RuboCop::Cop::Base#current_corrector
|
|
450
|
+
definition_id: def:v1:d26f1aca740cd21e36857fcc465fe199ccd0f41ee57bf3ed1ed8a99f10c1f898
|
|
451
|
+
path: lib/rubocop/cop/base.rb
|
|
452
|
+
line: 393
|
|
453
|
+
end_line: 395
|
|
454
|
+
loc: 3
|
|
455
|
+
state: unreachable
|
|
456
|
+
confidence: low
|
|
457
|
+
category: unreachable
|
|
458
|
+
status: pending
|
|
459
|
+
review_class: candidate
|
|
460
|
+
- corpus: rubocop_1_75_0
|
|
461
|
+
id: RuboCop::Cop::Base#current_offense_locations
|
|
462
|
+
definition_id: def:v1:7d265fab1598ab692fc8c1472035a63be129e797977ceca7b7bc53743916e290
|
|
463
|
+
path: lib/rubocop/cop/base.rb
|
|
464
|
+
line: 385
|
|
465
|
+
end_line: 387
|
|
466
|
+
loc: 3
|
|
467
|
+
state: unreachable
|
|
468
|
+
confidence: low
|
|
469
|
+
category: unreachable
|
|
470
|
+
status: pending
|
|
471
|
+
review_class: candidate
|
|
472
|
+
- corpus: rubocop_1_75_0
|
|
473
|
+
id: RuboCop::Cop::Base#current_offenses
|
|
474
|
+
definition_id: def:v1:3ddaee4313670c2c7bc508e0d2f2ae679f50fff54ae1fbb61a0d570d6d06e00c
|
|
475
|
+
path: lib/rubocop/cop/base.rb
|
|
476
|
+
line: 397
|
|
477
|
+
end_line: 399
|
|
478
|
+
loc: 3
|
|
479
|
+
state: unreachable
|
|
480
|
+
confidence: low
|
|
481
|
+
category: unreachable
|
|
482
|
+
status: pending
|
|
483
|
+
review_class: candidate
|
|
484
|
+
- corpus: rubocop_1_75_0
|
|
485
|
+
id: RuboCop::Cop::Base#currently_disabled_lines
|
|
486
|
+
definition_id: def:v1:6a9c61667dde4bb938ff1b15916ec5168c42891d7c181aca48748c534af0189f
|
|
487
|
+
path: lib/rubocop/cop/base.rb
|
|
488
|
+
line: 389
|
|
489
|
+
end_line: 391
|
|
490
|
+
loc: 3
|
|
491
|
+
state: unreachable
|
|
492
|
+
confidence: low
|
|
493
|
+
category: unreachable
|
|
494
|
+
status: pending
|
|
495
|
+
review_class: candidate
|
|
496
|
+
- corpus: rubocop_1_75_0
|
|
497
|
+
id: RuboCop::Cop::Base#custom_severity
|
|
498
|
+
definition_id: def:v1:f325d274fde83c69194c9d0d60d81dc090e33ad8dcf977d0b4596497a55c6eb5
|
|
499
|
+
path: lib/rubocop/cop/base.rb
|
|
500
|
+
line: 513
|
|
501
|
+
end_line: 524
|
|
502
|
+
loc: 12
|
|
503
|
+
state: unreachable
|
|
504
|
+
confidence: low
|
|
505
|
+
category: unreachable
|
|
506
|
+
status: pending
|
|
507
|
+
review_class: candidate
|
|
508
|
+
- corpus: rubocop_1_75_0
|
|
509
|
+
id: RuboCop::Cop::Base#default_severity
|
|
510
|
+
definition_id: def:v1:965a38691f4f04cfd44d0f080c76a2d9cee714bd5903d9fac8fb76fd727acfd7
|
|
511
|
+
path: lib/rubocop/cop/base.rb
|
|
512
|
+
line: 509
|
|
513
|
+
end_line: 511
|
|
514
|
+
loc: 3
|
|
515
|
+
state: unreachable
|
|
516
|
+
confidence: low
|
|
517
|
+
category: unreachable
|
|
518
|
+
status: pending
|
|
519
|
+
review_class: candidate
|
|
520
|
+
- corpus: rubocop_1_75_0
|
|
521
|
+
id: RuboCop::Cop::Base#disable_uncorrectable
|
|
522
|
+
definition_id: def:v1:6892828c312c3366ab9630a2ad4275d86800c9922f82ea6384b20573a96f35d3
|
|
523
|
+
path: lib/rubocop/cop/base.rb
|
|
524
|
+
line: 463
|
|
525
|
+
end_line: 468
|
|
526
|
+
loc: 6
|
|
527
|
+
state: unreachable
|
|
528
|
+
confidence: low
|
|
529
|
+
category: unreachable
|
|
530
|
+
status: pending
|
|
531
|
+
review_class: candidate
|
|
532
|
+
- corpus: rubocop_1_75_0
|
|
533
|
+
id: RuboCop::Cop::Base#enabled_line?
|
|
534
|
+
definition_id: def:v1:e81195ec1785056c98f9bcca10cd3b3ac3d4cb80f834ac28781147f50f51bf0a
|
|
535
|
+
path: lib/rubocop/cop/base.rb
|
|
536
|
+
line: 499
|
|
537
|
+
end_line: 503
|
|
538
|
+
loc: 5
|
|
539
|
+
state: unreachable
|
|
540
|
+
confidence: low
|
|
541
|
+
category: unreachable
|
|
542
|
+
status: pending
|
|
543
|
+
review_class: candidate
|
|
544
|
+
- corpus: rubocop_1_75_0
|
|
545
|
+
id: RuboCop::Cop::Base#file_name_matches_any?
|
|
546
|
+
definition_id: def:v1:ea9d50d5c5b3dab94f26e82e5de9d8f5b88e34b93c80f7bce4cbff2ac987c277
|
|
547
|
+
path: lib/rubocop/cop/base.rb
|
|
548
|
+
line: 491
|
|
549
|
+
end_line: 497
|
|
550
|
+
loc: 7
|
|
551
|
+
state: unreachable
|
|
552
|
+
confidence: low
|
|
553
|
+
category: unreachable
|
|
554
|
+
status: pending
|
|
555
|
+
review_class: candidate
|
|
556
|
+
- corpus: rubocop_1_75_0
|
|
557
|
+
id: RuboCop::Cop::Base#find_message
|
|
558
|
+
definition_id: def:v1:36dd2412d9c55f575fc9443f1b614a303dbcb8cc26e3c4af409a9714b76243a8
|
|
559
|
+
path: lib/rubocop/cop/base.rb
|
|
560
|
+
line: 481
|
|
561
|
+
end_line: 483
|
|
562
|
+
loc: 3
|
|
563
|
+
state: unreachable
|
|
564
|
+
confidence: low
|
|
565
|
+
category: unreachable
|
|
566
|
+
status: pending
|
|
567
|
+
review_class: candidate
|
|
568
|
+
- corpus: rubocop_1_75_0
|
|
569
|
+
id: RuboCop::Cop::Base#find_severity
|
|
570
|
+
definition_id: def:v1:5eccb6a40a12c3f67fabe2d106b655f22eece85c3b3ab41cd09f30f4153b4b8d
|
|
571
|
+
path: lib/rubocop/cop/base.rb
|
|
572
|
+
line: 505
|
|
573
|
+
end_line: 507
|
|
574
|
+
loc: 3
|
|
575
|
+
state: unreachable
|
|
576
|
+
confidence: low
|
|
577
|
+
category: unreachable
|
|
578
|
+
status: pending
|
|
579
|
+
review_class: candidate
|
|
580
|
+
- corpus: rubocop_1_75_0
|
|
581
|
+
id: RuboCop::Cop::Base#range_from_node_or_range
|
|
582
|
+
definition_id: def:v1:d0f6f186dbe71a0723aae755940a1a847127470cb2eba054f1e69eeba59fa5a8
|
|
583
|
+
path: lib/rubocop/cop/base.rb
|
|
584
|
+
line: 470
|
|
585
|
+
end_line: 479
|
|
586
|
+
loc: 10
|
|
587
|
+
state: unreachable
|
|
588
|
+
confidence: low
|
|
589
|
+
category: unreachable
|
|
590
|
+
status: pending
|
|
591
|
+
review_class: candidate
|
|
592
|
+
- corpus: rubocop_1_75_0
|
|
593
|
+
id: RuboCop::Cop::Base#reset_investigation
|
|
594
|
+
definition_id: def:v1:ed6dc71fdff080e0d32fea4e2504114992f0b791987e58f6705c25c3be29be98
|
|
595
|
+
path: lib/rubocop/cop/base.rb
|
|
596
|
+
line: 418
|
|
597
|
+
end_line: 420
|
|
598
|
+
loc: 3
|
|
599
|
+
state: unreachable
|
|
600
|
+
confidence: low
|
|
601
|
+
category: unreachable
|
|
602
|
+
status: pending
|
|
603
|
+
review_class: candidate
|
|
604
|
+
- corpus: rubocop_1_75_0
|
|
605
|
+
id: RuboCop::Cop::Base#target_satisfies_all_gem_version_requirements?
|
|
606
|
+
definition_id: def:v1:00908d66e95da3e83daa89ce351fbff325e18e7442752626e7d3164d8311f018
|
|
607
|
+
path: lib/rubocop/cop/base.rb
|
|
608
|
+
line: 534
|
|
609
|
+
end_line: 544
|
|
610
|
+
loc: 11
|
|
611
|
+
state: unreachable
|
|
612
|
+
confidence: low
|
|
613
|
+
category: unreachable
|
|
614
|
+
status: pending
|
|
615
|
+
review_class: candidate
|
|
616
|
+
- corpus: rubocop_1_75_0
|
|
617
|
+
id: RuboCop::Cop::Base#use_corrector
|
|
618
|
+
definition_id: def:v1:09a16594e6acc0508be1ce478827ffced78508148a8631822f3d244155409470
|
|
619
|
+
path: lib/rubocop/cop/base.rb
|
|
620
|
+
line: 438
|
|
621
|
+
end_line: 446
|
|
622
|
+
loc: 9
|
|
623
|
+
state: unreachable
|
|
624
|
+
confidence: low
|
|
625
|
+
category: unreachable
|
|
626
|
+
status: pending
|
|
627
|
+
review_class: candidate
|
|
628
|
+
- corpus: rubocop_1_75_0
|
|
629
|
+
id: RuboCop::Cop::Cop#correction_lambda
|
|
630
|
+
definition_id: def:v1:41644fafa0e8a42ceefb4542044d74d0577c090f0b85572f4d0d66104d576968
|
|
631
|
+
path: lib/rubocop/cop/cop.rb
|
|
632
|
+
line: 164
|
|
633
|
+
end_line: 168
|
|
634
|
+
loc: 5
|
|
635
|
+
state: unreachable
|
|
636
|
+
confidence: low
|
|
637
|
+
category: unreachable
|
|
638
|
+
status: pending
|
|
639
|
+
review_class: candidate
|
|
640
|
+
- corpus: rubocop_1_75_0
|
|
641
|
+
id: RuboCop::Cop::Cop#dedupe_on_node
|
|
642
|
+
definition_id: def:v1:cc620379bfb9deab39b9cddf5426f56dd5cdb23bf2cf3e9f466132cb6e69ff31
|
|
643
|
+
path: lib/rubocop/cop/cop.rb
|
|
644
|
+
line: 170
|
|
645
|
+
end_line: 175
|
|
646
|
+
loc: 6
|
|
647
|
+
state: unreachable
|
|
648
|
+
confidence: low
|
|
649
|
+
category: unreachable
|
|
650
|
+
status: pending
|
|
651
|
+
review_class: candidate
|
|
652
|
+
- corpus: rubocop_1_75_0
|
|
653
|
+
id: RuboCop::Cop::Cop#emulate_v0_callsequence
|
|
654
|
+
definition_id: def:v1:7faa41ce6385277e3cc1d9d857986e6bf59c2f81a5cad3f6bc340cf5ca89d2c7
|
|
655
|
+
path: lib/rubocop/cop/cop.rb
|
|
656
|
+
line: 152
|
|
657
|
+
end_line: 162
|
|
658
|
+
loc: 11
|
|
659
|
+
state: unreachable
|
|
660
|
+
confidence: low
|
|
661
|
+
category: unreachable
|
|
662
|
+
status: pending
|
|
663
|
+
review_class: candidate
|
|
664
|
+
- corpus: rubocop_1_75_0
|
|
665
|
+
id: RuboCop::Cop::Layout::AccessModifierIndentation#check_modifier
|
|
666
|
+
definition_id: def:v1:7d73c8b5025f1ac28cce586f21291f3445f0112185e4b0f2c7b77a2b871f560f
|
|
667
|
+
path: lib/rubocop/cop/layout/access_modifier_indentation.rb
|
|
668
|
+
line: 69
|
|
669
|
+
end_line: 86
|
|
670
|
+
loc: 18
|
|
671
|
+
state: unreachable
|
|
672
|
+
confidence: low
|
|
673
|
+
category: unreachable
|
|
674
|
+
status: pending
|
|
675
|
+
review_class: candidate
|
|
676
|
+
- corpus: rubocop_1_75_0
|
|
677
|
+
id: RuboCop::Cop::Layout::AccessModifierIndentation#expected_indent_offset
|
|
678
|
+
definition_id: def:v1:0ff0889b5659782e7c7e7dafb89a1de24038686565350b5f711f3aaca98cb354
|
|
679
|
+
path: lib/rubocop/cop/layout/access_modifier_indentation.rb
|
|
680
|
+
line: 92
|
|
681
|
+
end_line: 94
|
|
682
|
+
loc: 3
|
|
683
|
+
state: unreachable
|
|
684
|
+
confidence: low
|
|
685
|
+
category: unreachable
|
|
686
|
+
status: pending
|
|
687
|
+
review_class: candidate
|
|
688
|
+
- corpus: rubocop_1_75_0
|
|
689
|
+
id: RuboCop::Cop::Layout::AccessModifierIndentation#unexpected_indent_offset
|
|
690
|
+
definition_id: def:v1:a899e66b5d03396524c1cbf3addd65357a41e2a80b2d92309d0761b514741968
|
|
691
|
+
path: lib/rubocop/cop/layout/access_modifier_indentation.rb
|
|
692
|
+
line: 98
|
|
693
|
+
end_line: 100
|
|
694
|
+
loc: 3
|
|
695
|
+
state: unreachable
|
|
696
|
+
confidence: low
|
|
697
|
+
category: unreachable
|
|
698
|
+
status: pending
|
|
699
|
+
review_class: candidate
|
|
700
|
+
- corpus: rubocop_1_75_0
|
|
701
|
+
id: RuboCop::Cop::Layout::ArgumentAlignment#arguments_or_first_arg_pairs
|
|
702
|
+
definition_id: def:v1:1026b1617916d2b8ae0786216f44d1576e6d0cada614d79f236465da3cefa901
|
|
703
|
+
path: lib/rubocop/cop/layout/argument_alignment.rb
|
|
704
|
+
line: 91
|
|
705
|
+
end_line: 98
|
|
706
|
+
loc: 8
|
|
707
|
+
state: unreachable
|
|
708
|
+
confidence: low
|
|
709
|
+
category: unreachable
|
|
710
|
+
status: pending
|
|
711
|
+
review_class: candidate
|
|
712
|
+
- corpus: rubocop_1_75_0
|
|
713
|
+
id: RuboCop::Cop::Layout::ArgumentAlignment#arguments_with_last_arg_pairs
|
|
714
|
+
definition_id: def:v1:871c798473ddc3d19fe8c995c956ca9a641ea1b2d23983be56686c1119e90333
|
|
715
|
+
path: lib/rubocop/cop/layout/argument_alignment.rb
|
|
716
|
+
line: 79
|
|
717
|
+
end_line: 89
|
|
718
|
+
loc: 11
|
|
719
|
+
state: unreachable
|
|
720
|
+
confidence: low
|
|
721
|
+
category: unreachable
|
|
722
|
+
status: pending
|
|
723
|
+
review_class: candidate
|
|
724
|
+
- corpus: rubocop_1_75_0
|
|
725
|
+
id: RuboCop::Cop::Layout::ArgumentAlignment#enforce_hash_argument_with_separator?
|
|
726
|
+
definition_id: def:v1:734138e4c4f6a96e83ccaf5508adcad3032e6e1cb224c3e3d33065af914902a5
|
|
727
|
+
path: lib/rubocop/cop/layout/argument_alignment.rb
|
|
728
|
+
line: 143
|
|
729
|
+
end_line: 147
|
|
730
|
+
loc: 5
|
|
731
|
+
state: unreachable
|
|
732
|
+
confidence: low
|
|
733
|
+
category: unreachable
|
|
734
|
+
status: pending
|
|
735
|
+
review_class: candidate
|
|
736
|
+
- corpus: rubocop_1_75_0
|
|
737
|
+
id: RuboCop::Cop::Layout::ArgumentAlignment#flattened_arguments
|
|
738
|
+
definition_id: def:v1:1f6b24cd4ccbdf3388487cf5aa94fc46c2854ac0a5390d1d52960b6a35f40f78
|
|
739
|
+
path: lib/rubocop/cop/layout/argument_alignment.rb
|
|
740
|
+
line: 71
|
|
741
|
+
end_line: 77
|
|
742
|
+
loc: 7
|
|
743
|
+
state: unreachable
|
|
744
|
+
confidence: low
|
|
745
|
+
category: unreachable
|
|
746
|
+
status: pending
|
|
747
|
+
review_class: candidate
|
|
748
|
+
- corpus: rubocop_1_75_0
|
|
749
|
+
id: RuboCop::Cop::Layout::ArgumentAlignment#multiple_arguments?
|
|
750
|
+
definition_id: def:v1:f42d80a0d8043a05fd497969c7f32e1175f97e702898c0dbfb41d78fcfdd53ec
|
|
751
|
+
path: lib/rubocop/cop/layout/argument_alignment.rb
|
|
752
|
+
line: 100
|
|
753
|
+
end_line: 105
|
|
754
|
+
loc: 6
|
|
755
|
+
state: unreachable
|
|
756
|
+
confidence: low
|
|
757
|
+
category: unreachable
|
|
758
|
+
status: pending
|
|
759
|
+
review_class: candidate
|
|
760
|
+
- corpus: rubocop_1_75_0
|
|
761
|
+
id: RuboCop::Cop::Layout::ArgumentAlignment#with_first_argument_style?
|
|
762
|
+
definition_id: def:v1:6e2c76af79b4f2cddc234d890e6d6644f66e4936f8c6c167b49cf1a2f31bb297
|
|
763
|
+
path: lib/rubocop/cop/layout/argument_alignment.rb
|
|
764
|
+
line: 119
|
|
765
|
+
end_line: 121
|
|
766
|
+
loc: 3
|
|
767
|
+
state: unreachable
|
|
768
|
+
confidence: low
|
|
769
|
+
category: unreachable
|
|
770
|
+
status: pending
|
|
771
|
+
review_class: candidate
|
|
772
|
+
- corpus: rubocop_1_75_0
|
|
773
|
+
id: RuboCop::Cop::Layout::AssignmentIndentation#leftmost_multiple_assignment
|
|
774
|
+
definition_id: def:v1:5a2e9fc60ae6d360a8a54e54ba7dca20f936be96b0617bbee58008ae0b12df44
|
|
775
|
+
path: lib/rubocop/cop/layout/assignment_indentation.rb
|
|
776
|
+
line: 47
|
|
777
|
+
end_line: 53
|
|
778
|
+
loc: 7
|
|
779
|
+
state: unreachable
|
|
780
|
+
confidence: low
|
|
781
|
+
category: unreachable
|
|
782
|
+
status: pending
|
|
783
|
+
review_class: candidate
|
|
784
|
+
- corpus: rubocop_1_75_0
|
|
785
|
+
id: RuboCop::Cop::Layout::BeginEndAlignment#check_begin_alignment
|
|
786
|
+
definition_id: def:v1:d3566b4425f3a49f19d77b33ec2b40bf49d8cf07355b8c0defd93e29dbb69652
|
|
787
|
+
path: lib/rubocop/cop/layout/begin_end_alignment.rb
|
|
788
|
+
line: 53
|
|
789
|
+
end_line: 56
|
|
790
|
+
loc: 4
|
|
791
|
+
state: unreachable
|
|
792
|
+
confidence: low
|
|
793
|
+
category: unreachable
|
|
794
|
+
status: pending
|
|
795
|
+
review_class: candidate
|
|
796
|
+
- corpus: rubocop_1_75_0
|
|
797
|
+
id: RuboCop::Cop::Layout::BlockAlignment#add_space_before
|
|
798
|
+
definition_id: def:v1:8814682ef25ac6bb695d9f59fbf51c47404b36f8d45f41517114489e1a2d6b4c
|
|
799
|
+
path: lib/rubocop/cop/layout/block_alignment.rb
|
|
800
|
+
line: 248
|
|
801
|
+
end_line: 250
|
|
802
|
+
loc: 3
|
|
803
|
+
state: unreachable
|
|
804
|
+
confidence: low
|
|
805
|
+
category: unreachable
|
|
806
|
+
status: pending
|
|
807
|
+
review_class: candidate
|
|
808
|
+
- corpus: rubocop_1_75_0
|
|
809
|
+
id: RuboCop::Cop::Layout::BlockAlignment#alt_start_msg
|
|
810
|
+
definition_id: def:v1:0c0d8aa139699b8f01bd9349bd59ab6883aaa44f2c2ad2bfd71d1d4aada3f233
|
|
811
|
+
path: lib/rubocop/cop/layout/block_alignment.rb
|
|
812
|
+
line: 225
|
|
813
|
+
end_line: 233
|
|
814
|
+
loc: 9
|
|
815
|
+
state: unreachable
|
|
816
|
+
confidence: low
|
|
817
|
+
category: unreachable
|
|
818
|
+
status: pending
|
|
819
|
+
review_class: candidate
|
|
820
|
+
- corpus: rubocop_1_75_0
|
|
821
|
+
id: RuboCop::Cop::Layout::BlockAlignment#block_end_align_target
|
|
822
|
+
definition_id: def:v1:f9d68c0382c7a344b81bcf0a507f5a2152c946f3ea49ca73a739914a505fe87f
|
|
823
|
+
path: lib/rubocop/cop/layout/block_alignment.rb
|
|
824
|
+
line: 98
|
|
825
|
+
end_line: 106
|
|
826
|
+
loc: 9
|
|
827
|
+
state: unreachable
|
|
828
|
+
confidence: low
|
|
829
|
+
category: unreachable
|
|
830
|
+
status: pending
|
|
831
|
+
review_class: candidate
|
|
832
|
+
- corpus: rubocop_1_75_0
|
|
833
|
+
id: RuboCop::Cop::Layout::BlockAlignment#check_block_alignment
|
|
834
|
+
definition_id: def:v1:f63289c92d02adfd39d3caebb0b9779addb40f8cfeb6e725df7bc5a41a422b72
|
|
835
|
+
path: lib/rubocop/cop/layout/block_alignment.rb
|
|
836
|
+
line: 116
|
|
837
|
+
end_line: 127
|
|
838
|
+
loc: 12
|
|
839
|
+
state: unreachable
|
|
840
|
+
confidence: low
|
|
841
|
+
category: unreachable
|
|
842
|
+
status: pending
|
|
843
|
+
review_class: candidate
|
|
844
|
+
- corpus: rubocop_1_75_0
|
|
845
|
+
id: RuboCop::Cop::Layout::BlockAlignment#compute_do_source_line_column
|
|
846
|
+
definition_id: def:v1:e09a0e7f351943b78e9c80024a36ec6986f0bab67aa54b86ad413bc88dec1033
|
|
847
|
+
path: lib/rubocop/cop/layout/block_alignment.rb
|
|
848
|
+
line: 198
|
|
849
|
+
end_line: 215
|
|
850
|
+
loc: 18
|
|
851
|
+
state: unreachable
|
|
852
|
+
confidence: low
|
|
853
|
+
category: unreachable
|
|
854
|
+
status: pending
|
|
855
|
+
review_class: candidate
|
|
856
|
+
- corpus: rubocop_1_75_0
|
|
857
|
+
id: RuboCop::Cop::Layout::BlockAlignment#compute_start_col
|
|
858
|
+
definition_id: def:v1:3852dc30cdf3e8eda6c2bf68d84b44317a34a6eb70866166ea003682361100a0
|
|
859
|
+
path: lib/rubocop/cop/layout/block_alignment.rb
|
|
860
|
+
line: 240
|
|
861
|
+
end_line: 246
|
|
862
|
+
loc: 7
|
|
863
|
+
state: unreachable
|
|
864
|
+
confidence: low
|
|
865
|
+
category: unreachable
|
|
866
|
+
status: pending
|
|
867
|
+
review_class: candidate
|
|
868
|
+
- corpus: rubocop_1_75_0
|
|
869
|
+
id: RuboCop::Cop::Layout::BlockAlignment#disqualified_parent?
|
|
870
|
+
definition_id: def:v1:aeea9f94c239ef94661f0f9e4997f536bb1b36eb87dc0fad3b8b197c616345dc
|
|
871
|
+
path: lib/rubocop/cop/layout/block_alignment.rb
|
|
872
|
+
line: 112
|
|
873
|
+
end_line: 114
|
|
874
|
+
loc: 3
|
|
875
|
+
state: unreachable
|
|
876
|
+
confidence: low
|
|
877
|
+
category: unreachable
|
|
878
|
+
status: pending
|
|
879
|
+
review_class: candidate
|
|
880
|
+
- corpus: rubocop_1_75_0
|
|
881
|
+
id: RuboCop::Cop::Layout::BlockAlignment#end_align_target?
|
|
882
|
+
definition_id: def:v1:c921cf36eb236bc939a900052a667b33cf375890c84c8929c61eef2211327a98
|
|
883
|
+
path: lib/rubocop/cop/layout/block_alignment.rb
|
|
884
|
+
line: 108
|
|
885
|
+
end_line: 110
|
|
886
|
+
loc: 3
|
|
887
|
+
state: unreachable
|
|
888
|
+
confidence: low
|
|
889
|
+
category: unreachable
|
|
890
|
+
status: pending
|
|
891
|
+
review_class: candidate
|
|
892
|
+
- corpus: rubocop_1_75_0
|
|
893
|
+
id: RuboCop::Cop::Layout::BlockAlignment#find_lhs_node
|
|
894
|
+
definition_id: def:v1:1591ed0655afa2827a67a8bb3b9a694fdaf08004418178ec5e8197782f2f82c0
|
|
895
|
+
path: lib/rubocop/cop/layout/block_alignment.rb
|
|
896
|
+
line: 193
|
|
897
|
+
end_line: 196
|
|
898
|
+
loc: 4
|
|
899
|
+
state: unreachable
|
|
900
|
+
confidence: low
|
|
901
|
+
category: unreachable
|
|
902
|
+
status: pending
|
|
903
|
+
review_class: candidate
|
|
904
|
+
- corpus: rubocop_1_75_0
|
|
905
|
+
id: RuboCop::Cop::Layout::BlockAlignment#format_source_line_column
|
|
906
|
+
definition_id: def:v1:9622543807fc39122f558ef781ea5d5f182ef1fb976e79b50d009fc94adb9ab2
|
|
907
|
+
path: lib/rubocop/cop/layout/block_alignment.rb
|
|
908
|
+
line: 235
|
|
909
|
+
end_line: 238
|
|
910
|
+
loc: 4
|
|
911
|
+
state: unreachable
|
|
912
|
+
confidence: low
|
|
913
|
+
category: unreachable
|
|
914
|
+
status: pending
|
|
915
|
+
review_class: candidate
|
|
916
|
+
- corpus: rubocop_1_75_0
|
|
917
|
+
id: RuboCop::Cop::Layout::BlockAlignment#loc_to_source_line_column
|
|
918
|
+
definition_id: def:v1:510a816bc6580e3da270d9d2f2dcb6bcd7db8601e0696a30b23d62065f1081ca
|
|
919
|
+
path: lib/rubocop/cop/layout/block_alignment.rb
|
|
920
|
+
line: 217
|
|
921
|
+
end_line: 223
|
|
922
|
+
loc: 7
|
|
923
|
+
state: unreachable
|
|
924
|
+
confidence: low
|
|
925
|
+
category: unreachable
|
|
926
|
+
status: pending
|
|
927
|
+
review_class: candidate
|
|
928
|
+
- corpus: rubocop_1_75_0
|
|
929
|
+
id: RuboCop::Cop::Layout::BlockAlignment#remove_space_before
|
|
930
|
+
definition_id: def:v1:0910065210ad303172e524b12c643f67762f90127b9d49b0a08f0c68699186b2
|
|
931
|
+
path: lib/rubocop/cop/layout/block_alignment.rb
|
|
932
|
+
line: 252
|
|
933
|
+
end_line: 256
|
|
934
|
+
loc: 5
|
|
935
|
+
state: unreachable
|
|
936
|
+
confidence: low
|
|
937
|
+
category: unreachable
|
|
938
|
+
status: pending
|
|
939
|
+
review_class: candidate
|
|
940
|
+
- corpus: rubocop_1_75_0
|
|
941
|
+
id: RuboCop::Cop::Layout::BlockAlignment#start_for_block_node
|
|
942
|
+
definition_id: def:v1:0c8ddd120450b31f51a1806148c632ba15ef59f382c6f0e7a3e082c642c10333
|
|
943
|
+
path: lib/rubocop/cop/layout/block_alignment.rb
|
|
944
|
+
line: 174
|
|
945
|
+
end_line: 179
|
|
946
|
+
loc: 6
|
|
947
|
+
state: unreachable
|
|
948
|
+
confidence: low
|
|
949
|
+
category: unreachable
|
|
950
|
+
status: pending
|
|
951
|
+
review_class: candidate
|
|
952
|
+
- corpus: rubocop_1_75_0
|
|
953
|
+
id: RuboCop::Cop::Layout::BlockAlignment#start_for_line_node
|
|
954
|
+
definition_id: def:v1:e8f23e2337b1f94616a841de22f00afea2f7517f75295b0dd22af6487e5c0d56
|
|
955
|
+
path: lib/rubocop/cop/layout/block_alignment.rb
|
|
956
|
+
line: 181
|
|
957
|
+
end_line: 189
|
|
958
|
+
loc: 9
|
|
959
|
+
state: unreachable
|
|
960
|
+
confidence: low
|
|
961
|
+
category: unreachable
|
|
962
|
+
status: pending
|
|
963
|
+
review_class: candidate
|
|
964
|
+
- corpus: rubocop_1_75_0
|
|
965
|
+
id: RuboCop::Cop::Layout::CaseIndentation#check_when
|
|
966
|
+
definition_id: def:v1:a84a74851b9c07419e54efe795aadc20d655edab8793041947fc7f8a3eba0913
|
|
967
|
+
path: lib/rubocop/cop/layout/case_indentation.rb
|
|
968
|
+
line: 150
|
|
969
|
+
end_line: 159
|
|
970
|
+
loc: 10
|
|
971
|
+
state: unreachable
|
|
972
|
+
confidence: low
|
|
973
|
+
category: unreachable
|
|
974
|
+
status: pending
|
|
975
|
+
review_class: candidate
|
|
976
|
+
- corpus: rubocop_1_75_0
|
|
977
|
+
id: RuboCop::Cop::Layout::CaseIndentation#detect_incorrect_style
|
|
978
|
+
definition_id: def:v1:2a6d000f38e285011b1cc3b078dd006b94f16530069b9bef66f2fdc26cb37d78
|
|
979
|
+
path: lib/rubocop/cop/layout/case_indentation.rb
|
|
980
|
+
line: 182
|
|
981
|
+
end_line: 191
|
|
982
|
+
loc: 10
|
|
983
|
+
state: unreachable
|
|
984
|
+
confidence: low
|
|
985
|
+
category: unreachable
|
|
986
|
+
status: pending
|
|
987
|
+
review_class: candidate
|
|
988
|
+
- corpus: rubocop_1_75_0
|
|
989
|
+
id: RuboCop::Cop::Layout::CaseIndentation#end_and_last_conditional_same_line?
|
|
990
|
+
definition_id: def:v1:838ff153f6cfebd9de63dea1fe919b0dca4f8c0a184f8a07549ec42d5c39a28a
|
|
991
|
+
path: lib/rubocop/cop/layout/case_indentation.rb
|
|
992
|
+
line: 136
|
|
993
|
+
end_line: 144
|
|
994
|
+
loc: 9
|
|
995
|
+
state: unreachable
|
|
996
|
+
confidence: low
|
|
997
|
+
category: unreachable
|
|
998
|
+
status: pending
|
|
999
|
+
review_class: candidate
|
|
1000
|
+
- corpus: rubocop_1_75_0
|
|
1001
|
+
id: RuboCop::Cop::Layout::CaseIndentation#enforced_style_end?
|
|
1002
|
+
definition_id: def:v1:266ac3fe4a7246bcf049d337c9097eaf6e2032c62da57938e8783da6ace7f950
|
|
1003
|
+
path: lib/rubocop/cop/layout/case_indentation.rb
|
|
1004
|
+
line: 146
|
|
1005
|
+
end_line: 148
|
|
1006
|
+
loc: 3
|
|
1007
|
+
state: unreachable
|
|
1008
|
+
confidence: low
|
|
1009
|
+
category: unreachable
|
|
1010
|
+
status: pending
|
|
1011
|
+
review_class: candidate
|
|
1012
|
+
- corpus: rubocop_1_75_0
|
|
1013
|
+
id: RuboCop::Cop::Layout::CaseIndentation#incorrect_style
|
|
1014
|
+
definition_id: def:v1:fb44427403b1e90eb990d8129c845b16f165c6a0b7fa4f30523a496bb4fd7e47
|
|
1015
|
+
path: lib/rubocop/cop/layout/case_indentation.rb
|
|
1016
|
+
line: 169
|
|
1017
|
+
end_line: 180
|
|
1018
|
+
loc: 12
|
|
1019
|
+
state: unreachable
|
|
1020
|
+
confidence: low
|
|
1021
|
+
category: unreachable
|
|
1022
|
+
status: pending
|
|
1023
|
+
review_class: candidate
|
|
1024
|
+
- corpus: rubocop_1_75_0
|
|
1025
|
+
id: RuboCop::Cop::Layout::CaseIndentation#indent_one_step?
|
|
1026
|
+
definition_id: def:v1:cb14069038c11a31e48beb3555352c88aadfdc486552a0920762a8a279303c05
|
|
1027
|
+
path: lib/rubocop/cop/layout/case_indentation.rb
|
|
1028
|
+
line: 161
|
|
1029
|
+
end_line: 163
|
|
1030
|
+
loc: 3
|
|
1031
|
+
state: unreachable
|
|
1032
|
+
confidence: low
|
|
1033
|
+
category: unreachable
|
|
1034
|
+
status: pending
|
|
1035
|
+
review_class: candidate
|
|
1036
|
+
- corpus: rubocop_1_75_0
|
|
1037
|
+
id: RuboCop::Cop::Layout::CaseIndentation#indentation_width
|
|
1038
|
+
definition_id: def:v1:632e2ff66a452651b535351acb00bae1c9611c77b9bc3eefbb672ba082909201
|
|
1039
|
+
path: lib/rubocop/cop/layout/case_indentation.rb
|
|
1040
|
+
line: 165
|
|
1041
|
+
end_line: 167
|
|
1042
|
+
loc: 3
|
|
1043
|
+
state: unreachable
|
|
1044
|
+
confidence: low
|
|
1045
|
+
category: unreachable
|
|
1046
|
+
status: pending
|
|
1047
|
+
review_class: candidate
|
|
1048
|
+
- corpus: rubocop_1_75_0
|
|
1049
|
+
id: RuboCop::Cop::Layout::CaseIndentation#replacement
|
|
1050
|
+
definition_id: def:v1:6c7fe66e4c4d091c840af20dbf6c22baad6b967d2e3d5c47ea083537a68c996c
|
|
1051
|
+
path: lib/rubocop/cop/layout/case_indentation.rb
|
|
1052
|
+
line: 207
|
|
1053
|
+
end_line: 215
|
|
1054
|
+
loc: 9
|
|
1055
|
+
state: unreachable
|
|
1056
|
+
confidence: low
|
|
1057
|
+
category: unreachable
|
|
1058
|
+
status: pending
|
|
1059
|
+
review_class: candidate
|
|
1060
|
+
- corpus: rubocop_1_75_0
|
|
1061
|
+
id: RuboCop::Cop::Layout::ClassStructure#begin_pos_with_comment
|
|
1062
|
+
definition_id: def:v1:26819bea1e82b0d0f37c307423fd25b175f6806c9da23a59a1c854d86094cfc3
|
|
1063
|
+
path: lib/rubocop/cop/layout/class_structure.rb
|
|
1064
|
+
line: 305
|
|
1065
|
+
end_line: 314
|
|
1066
|
+
loc: 10
|
|
1067
|
+
state: unreachable
|
|
1068
|
+
confidence: low
|
|
1069
|
+
category: unreachable
|
|
1070
|
+
status: pending
|
|
1071
|
+
review_class: candidate
|
|
1072
|
+
- corpus: rubocop_1_75_0
|
|
1073
|
+
id: RuboCop::Cop::Layout::ClassStructure#buffer
|
|
1074
|
+
definition_id: def:v1:3ebf8ae620461a345553a66b855cd23ee2589293881c00f3eff1ee42451c982a
|
|
1075
|
+
path: lib/rubocop/cop/layout/class_structure.rb
|
|
1076
|
+
line: 328
|
|
1077
|
+
end_line: 330
|
|
1078
|
+
loc: 3
|
|
1079
|
+
state: unreachable
|
|
1080
|
+
confidence: low
|
|
1081
|
+
category: unreachable
|
|
1082
|
+
status: pending
|
|
1083
|
+
review_class: candidate
|
|
1084
|
+
- corpus: rubocop_1_75_0
|
|
1085
|
+
id: RuboCop::Cop::Layout::ClassStructure#categories
|
|
1086
|
+
definition_id: def:v1:a1e6f6a3e404c5d2b4ced08f3f884292dac2bc3d6f7551eadae3f211dfb6a8ac
|
|
1087
|
+
path: lib/rubocop/cop/layout/class_structure.rb
|
|
1088
|
+
line: 340
|
|
1089
|
+
end_line: 342
|
|
1090
|
+
loc: 3
|
|
1091
|
+
state: unreachable
|
|
1092
|
+
confidence: low
|
|
1093
|
+
category: unreachable
|
|
1094
|
+
status: pending
|
|
1095
|
+
review_class: candidate
|
|
1096
|
+
- corpus: rubocop_1_75_0
|
|
1097
|
+
id: RuboCop::Cop::Layout::ClassStructure#class_elements
|
|
1098
|
+
definition_id: def:v1:a98910dbfb9239c12c5c8c356ff25e355b9e43f47a74c4b3d2cdb2f09a5a103b
|
|
1099
|
+
path: lib/rubocop/cop/layout/class_structure.rb
|
|
1100
|
+
line: 234
|
|
1101
|
+
end_line: 244
|
|
1102
|
+
loc: 11
|
|
1103
|
+
state: unreachable
|
|
1104
|
+
confidence: low
|
|
1105
|
+
category: unreachable
|
|
1106
|
+
status: pending
|
|
1107
|
+
review_class: candidate
|
|
1108
|
+
- corpus: rubocop_1_75_0
|
|
1109
|
+
id: RuboCop::Cop::Layout::ClassStructure#classify
|
|
1110
|
+
definition_id: def:v1:fffc60b2d388a1b60c45ccbaf57755591838b6a03f427259393cdcf90fa30b0d
|
|
1111
|
+
path: lib/rubocop/cop/layout/class_structure.rb
|
|
1112
|
+
line: 194
|
|
1113
|
+
end_line: 205
|
|
1114
|
+
loc: 12
|
|
1115
|
+
state: unreachable
|
|
1116
|
+
confidence: low
|
|
1117
|
+
category: unreachable
|
|
1118
|
+
status: pending
|
|
1119
|
+
review_class: candidate
|
|
1120
|
+
- corpus: rubocop_1_75_0
|
|
1121
|
+
id: RuboCop::Cop::Layout::ClassStructure#dynamic_constant?
|
|
1122
|
+
definition_id: def:v1:c1182c134440465c82ad78cd024b492519012f194533e2e805d4ec03eb7f1b51
|
|
1123
|
+
path: lib/rubocop/cop/layout/class_structure.rb
|
|
1124
|
+
line: 271
|
|
1125
|
+
end_line: 277
|
|
1126
|
+
loc: 7
|
|
1127
|
+
state: unreachable
|
|
1128
|
+
confidence: low
|
|
1129
|
+
category: unreachable
|
|
1130
|
+
status: pending
|
|
1131
|
+
review_class: candidate
|
|
1132
|
+
- corpus: rubocop_1_75_0
|
|
1133
|
+
id: RuboCop::Cop::Layout::ClassStructure#end_position_for
|
|
1134
|
+
definition_id: def:v1:3de128acc0b263604a72813ef2b346430bd475097d499719b7e641ca936dfd7c
|
|
1135
|
+
path: lib/rubocop/cop/layout/class_structure.rb
|
|
1136
|
+
line: 295
|
|
1137
|
+
end_line: 303
|
|
1138
|
+
loc: 9
|
|
1139
|
+
state: unreachable
|
|
1140
|
+
confidence: low
|
|
1141
|
+
category: unreachable
|
|
1142
|
+
status: pending
|
|
1143
|
+
review_class: candidate
|
|
1144
|
+
- corpus: rubocop_1_75_0
|
|
1145
|
+
id: RuboCop::Cop::Layout::ClassStructure#expected_order
|
|
1146
|
+
definition_id: def:v1:e2a2b7d240b932877e91f175ea798b654d87573ce3e06478e8fe9a7d318e5da3
|
|
1147
|
+
path: lib/rubocop/cop/layout/class_structure.rb
|
|
1148
|
+
line: 334
|
|
1149
|
+
end_line: 336
|
|
1150
|
+
loc: 3
|
|
1151
|
+
state: unreachable
|
|
1152
|
+
confidence: low
|
|
1153
|
+
category: unreachable
|
|
1154
|
+
status: pending
|
|
1155
|
+
review_class: candidate
|
|
1156
|
+
- corpus: rubocop_1_75_0
|
|
1157
|
+
id: RuboCop::Cop::Layout::ClassStructure#find_category
|
|
1158
|
+
definition_id: def:v1:7516b2100bb7621760d6a51597cae2bdcf18a620c377e796a8509e54592644bf
|
|
1159
|
+
path: lib/rubocop/cop/layout/class_structure.rb
|
|
1160
|
+
line: 212
|
|
1161
|
+
end_line: 223
|
|
1162
|
+
loc: 12
|
|
1163
|
+
state: unreachable
|
|
1164
|
+
confidence: low
|
|
1165
|
+
category: unreachable
|
|
1166
|
+
status: pending
|
|
1167
|
+
review_class: candidate
|
|
1168
|
+
- corpus: rubocop_1_75_0
|
|
1169
|
+
id: RuboCop::Cop::Layout::ClassStructure#humanize_node
|
|
1170
|
+
definition_id: def:v1:44444d39e68560a3b90ea4521ffaa7e954913d03146aed8a58d08b4e8fa3b0de
|
|
1171
|
+
path: lib/rubocop/cop/layout/class_structure.rb
|
|
1172
|
+
line: 262
|
|
1173
|
+
end_line: 269
|
|
1174
|
+
loc: 8
|
|
1175
|
+
state: unreachable
|
|
1176
|
+
confidence: low
|
|
1177
|
+
category: unreachable
|
|
1178
|
+
status: pending
|
|
1179
|
+
review_class: candidate
|
|
1180
|
+
- corpus: rubocop_1_75_0
|
|
1181
|
+
id: RuboCop::Cop::Layout::ClassStructure#ignore?
|
|
1182
|
+
definition_id: def:v1:16ea4dc6a1c50b19662c1848979b4cb892c7ef9f016b660fdafb15ea87c535fa
|
|
1183
|
+
path: lib/rubocop/cop/layout/class_structure.rb
|
|
1184
|
+
line: 246
|
|
1185
|
+
end_line: 251
|
|
1186
|
+
loc: 6
|
|
1187
|
+
state: unreachable
|
|
1188
|
+
confidence: low
|
|
1189
|
+
category: unreachable
|
|
1190
|
+
status: pending
|
|
1191
|
+
review_class: candidate
|
|
1192
|
+
- corpus: rubocop_1_75_0
|
|
1193
|
+
id: RuboCop::Cop::Layout::ClassStructure#ignore_for_autocorrect?
|
|
1194
|
+
definition_id: def:v1:22427204bf2bc7f305d77c8232aebecbb4e2b3c19a80522e5f5b36bc42e70574
|
|
1195
|
+
path: lib/rubocop/cop/layout/class_structure.rb
|
|
1196
|
+
line: 253
|
|
1197
|
+
end_line: 260
|
|
1198
|
+
loc: 8
|
|
1199
|
+
state: unreachable
|
|
1200
|
+
confidence: low
|
|
1201
|
+
category: unreachable
|
|
1202
|
+
status: pending
|
|
1203
|
+
review_class: candidate
|
|
1204
|
+
- corpus: rubocop_1_75_0
|
|
1205
|
+
id: RuboCop::Cop::Layout::ClassStructure#marked_as_private_constant?
|
|
1206
|
+
definition_id: def:v1:2b50ee51ddf6d3d6192ca5af2968fc0b1f4b02f81a03d50b5c0a8cfea922343f
|
|
1207
|
+
path: lib/rubocop/cop/layout/class_structure.rb
|
|
1208
|
+
line: 289
|
|
1209
|
+
end_line: 293
|
|
1210
|
+
loc: 5
|
|
1211
|
+
state: unreachable
|
|
1212
|
+
confidence: low
|
|
1213
|
+
category: unreachable
|
|
1214
|
+
status: pending
|
|
1215
|
+
review_class: candidate
|
|
1216
|
+
- corpus: rubocop_1_75_0
|
|
1217
|
+
id: RuboCop::Cop::Layout::ClassStructure#private_constant?
|
|
1218
|
+
definition_id: def:v1:5a4c9dca1b067075d448c70ce7a8265395fa55abdf97558402b6ad9c5a99033e
|
|
1219
|
+
path: lib/rubocop/cop/layout/class_structure.rb
|
|
1220
|
+
line: 279
|
|
1221
|
+
end_line: 287
|
|
1222
|
+
loc: 9
|
|
1223
|
+
state: unreachable
|
|
1224
|
+
confidence: low
|
|
1225
|
+
category: unreachable
|
|
1226
|
+
status: pending
|
|
1227
|
+
review_class: candidate
|
|
1228
|
+
- corpus: rubocop_1_75_0
|
|
1229
|
+
id: RuboCop::Cop::Layout::ClassStructure#start_line_position
|
|
1230
|
+
definition_id: def:v1:1daf9843490a8ba5f951b730d0e2d5fd53dfe5fae5e4795fe5962a982732d297
|
|
1231
|
+
path: lib/rubocop/cop/layout/class_structure.rb
|
|
1232
|
+
line: 320
|
|
1233
|
+
end_line: 322
|
|
1234
|
+
loc: 3
|
|
1235
|
+
state: unreachable
|
|
1236
|
+
confidence: low
|
|
1237
|
+
category: unreachable
|
|
1238
|
+
status: pending
|
|
1239
|
+
review_class: candidate
|
|
1240
|
+
- corpus: rubocop_1_75_0
|
|
1241
|
+
id: RuboCop::Cop::Layout::ClassStructure#walk_over_nested_class_definition
|
|
1242
|
+
definition_id: def:v1:db751c3585ca052e41beea9e5300d6c1951d2f8dbff3e417331d65b6481d2b6e
|
|
1243
|
+
path: lib/rubocop/cop/layout/class_structure.rb
|
|
1244
|
+
line: 225
|
|
1245
|
+
end_line: 232
|
|
1246
|
+
loc: 8
|
|
1247
|
+
state: unreachable
|
|
1248
|
+
confidence: low
|
|
1249
|
+
category: unreachable
|
|
1250
|
+
status: pending
|
|
1251
|
+
review_class: candidate
|
|
1252
|
+
- corpus: rubocop_1_75_0
|
|
1253
|
+
id: RuboCop::Cop::Layout::ClassStructure#whole_line_comment_at_line?
|
|
1254
|
+
definition_id: def:v1:89d3d353a75af8ef399866dc043113200f0452c3b0aef69921ddfd60c751d85c
|
|
1255
|
+
path: lib/rubocop/cop/layout/class_structure.rb
|
|
1256
|
+
line: 316
|
|
1257
|
+
end_line: 318
|
|
1258
|
+
loc: 3
|
|
1259
|
+
state: unreachable
|
|
1260
|
+
confidence: low
|
|
1261
|
+
category: unreachable
|
|
1262
|
+
status: pending
|
|
1263
|
+
review_class: candidate
|
|
1264
|
+
- corpus: rubocop_1_75_0
|
|
1265
|
+
id: RuboCop::Cop::Layout::ClosingHeredocIndentation#argument_indentation_correct?
|
|
1266
|
+
definition_id: def:v1:268dbae7747f125bcffc5ee578ca723173acb4dddbd4cd43c0247f5922ce0f8f
|
|
1267
|
+
path: lib/rubocop/cop/layout/closing_heredoc_indentation.rb
|
|
1268
|
+
line: 74
|
|
1269
|
+
end_line: 80
|
|
1270
|
+
loc: 7
|
|
1271
|
+
state: unreachable
|
|
1272
|
+
confidence: low
|
|
1273
|
+
category: unreachable
|
|
1274
|
+
status: pending
|
|
1275
|
+
review_class: candidate
|
|
1276
|
+
- corpus: rubocop_1_75_0
|
|
1277
|
+
id: RuboCop::Cop::Layout::ClosingHeredocIndentation#closing_indentation
|
|
1278
|
+
definition_id: def:v1:a8a06e37625f8ca0c168cf709d47c82a76afc3c7b05b1c9340d9cfae7ceec630
|
|
1279
|
+
path: lib/rubocop/cop/layout/closing_heredoc_indentation.rb
|
|
1280
|
+
line: 82
|
|
1281
|
+
end_line: 84
|
|
1282
|
+
loc: 3
|
|
1283
|
+
state: unreachable
|
|
1284
|
+
confidence: low
|
|
1285
|
+
category: unreachable
|
|
1286
|
+
status: pending
|
|
1287
|
+
review_class: candidate
|
|
1288
|
+
- corpus: rubocop_1_75_0
|
|
1289
|
+
id: RuboCop::Cop::Layout::ClosingHeredocIndentation#find_node_used_heredoc_argument
|
|
1290
|
+
definition_id: def:v1:18c411fdd3cdc1a9e14346b140b79cc8e677e4bc513176f32766f03ed12a6d89
|
|
1291
|
+
path: lib/rubocop/cop/layout/closing_heredoc_indentation.rb
|
|
1292
|
+
line: 101
|
|
1293
|
+
end_line: 107
|
|
1294
|
+
loc: 7
|
|
1295
|
+
state: unreachable
|
|
1296
|
+
confidence: low
|
|
1297
|
+
category: unreachable
|
|
1298
|
+
status: pending
|
|
1299
|
+
review_class: candidate
|
|
1300
|
+
- corpus: rubocop_1_75_0
|
|
1301
|
+
id: RuboCop::Cop::Layout::ClosingHeredocIndentation#heredoc_closing
|
|
1302
|
+
definition_id: def:v1:75f89902f9de6abc82a931686b5c4dc826fcdb4fea7c57abb5f210af6ca431d3
|
|
1303
|
+
path: lib/rubocop/cop/layout/closing_heredoc_indentation.rb
|
|
1304
|
+
line: 90
|
|
1305
|
+
end_line: 92
|
|
1306
|
+
loc: 3
|
|
1307
|
+
state: unreachable
|
|
1308
|
+
confidence: low
|
|
1309
|
+
category: unreachable
|
|
1310
|
+
status: pending
|
|
1311
|
+
review_class: candidate
|
|
1312
|
+
- corpus: rubocop_1_75_0
|
|
1313
|
+
id: RuboCop::Cop::Layout::ClosingHeredocIndentation#heredoc_opening
|
|
1314
|
+
definition_id: def:v1:f01fac94411c0f03b894e56c478fec087d3a8f6655eaf508d31ea775d4c5dc24
|
|
1315
|
+
path: lib/rubocop/cop/layout/closing_heredoc_indentation.rb
|
|
1316
|
+
line: 86
|
|
1317
|
+
end_line: 88
|
|
1318
|
+
loc: 3
|
|
1319
|
+
state: unreachable
|
|
1320
|
+
confidence: low
|
|
1321
|
+
category: unreachable
|
|
1322
|
+
status: pending
|
|
1323
|
+
review_class: candidate
|
|
1324
|
+
- corpus: rubocop_1_75_0
|
|
1325
|
+
id: RuboCop::Cop::Layout::ClosingHeredocIndentation#opening_indentation
|
|
1326
|
+
definition_id: def:v1:97ba7cc9e35504872dc3a3feb2931da8c9f6f83d4415f1a77fb61d15f4e29f31
|
|
1327
|
+
path: lib/rubocop/cop/layout/closing_heredoc_indentation.rb
|
|
1328
|
+
line: 70
|
|
1329
|
+
end_line: 72
|
|
1330
|
+
loc: 3
|
|
1331
|
+
state: unreachable
|
|
1332
|
+
confidence: low
|
|
1333
|
+
category: unreachable
|
|
1334
|
+
status: pending
|
|
1335
|
+
review_class: candidate
|
|
1336
|
+
- corpus: rubocop_1_75_0
|
|
1337
|
+
id: RuboCop::Cop::Layout::ClosingParenthesisIndentation#all_elements_aligned?
|
|
1338
|
+
definition_id: def:v1:a75892c5529a455e011ad7ea16384a3b5de410e77314591f8e32b014ca8f4462
|
|
1339
|
+
path: lib/rubocop/cop/layout/closing_parenthesis_indentation.rb
|
|
1340
|
+
line: 157
|
|
1341
|
+
end_line: 165
|
|
1342
|
+
loc: 9
|
|
1343
|
+
state: unreachable
|
|
1344
|
+
confidence: low
|
|
1345
|
+
category: unreachable
|
|
1346
|
+
status: pending
|
|
1347
|
+
review_class: candidate
|
|
1348
|
+
- corpus: rubocop_1_75_0
|
|
1349
|
+
id: RuboCop::Cop::Layout::ClosingParenthesisIndentation#check_for_elements
|
|
1350
|
+
definition_id: def:v1:db2e0f8715e71f9a9c2057a4ab6f87d5aad10a8819aadf92e1a4916bf073ee83
|
|
1351
|
+
path: lib/rubocop/cop/layout/closing_parenthesis_indentation.rb
|
|
1352
|
+
line: 107
|
|
1353
|
+
end_line: 123
|
|
1354
|
+
loc: 17
|
|
1355
|
+
state: unreachable
|
|
1356
|
+
confidence: low
|
|
1357
|
+
category: unreachable
|
|
1358
|
+
status: pending
|
|
1359
|
+
review_class: candidate
|
|
1360
|
+
- corpus: rubocop_1_75_0
|
|
1361
|
+
id: RuboCop::Cop::Layout::ClosingParenthesisIndentation#check_for_no_elements
|
|
1362
|
+
definition_id: def:v1:425ba445c4728d0742d2eb5b236dd6f35b957b25efcbdf16fedbcb421376dd2f
|
|
1363
|
+
path: lib/rubocop/cop/layout/closing_parenthesis_indentation.rb
|
|
1364
|
+
line: 125
|
|
1365
|
+
end_line: 142
|
|
1366
|
+
loc: 18
|
|
1367
|
+
state: unreachable
|
|
1368
|
+
confidence: low
|
|
1369
|
+
category: unreachable
|
|
1370
|
+
status: pending
|
|
1371
|
+
review_class: candidate
|
|
1372
|
+
- corpus: rubocop_1_75_0
|
|
1373
|
+
id: RuboCop::Cop::Layout::ClosingParenthesisIndentation#correct_column_candidates
|
|
1374
|
+
definition_id: def:v1:07f97d0eb0f3f41afebef995fdf72d63eabdd431e842ad09a045a545cab5b04b
|
|
1375
|
+
path: lib/rubocop/cop/layout/closing_parenthesis_indentation.rb
|
|
1376
|
+
line: 171
|
|
1377
|
+
end_line: 177
|
|
1378
|
+
loc: 7
|
|
1379
|
+
state: unreachable
|
|
1380
|
+
confidence: low
|
|
1381
|
+
category: unreachable
|
|
1382
|
+
status: pending
|
|
1383
|
+
review_class: candidate
|
|
1384
|
+
- corpus: rubocop_1_75_0
|
|
1385
|
+
id: RuboCop::Cop::Layout::ClosingParenthesisIndentation#expected_column
|
|
1386
|
+
definition_id: def:v1:ae1a48b86865edb97732c7023ef365fe048009b799f453ad0745ee51d168617f
|
|
1387
|
+
path: lib/rubocop/cop/layout/closing_parenthesis_indentation.rb
|
|
1388
|
+
line: 144
|
|
1389
|
+
end_line: 155
|
|
1390
|
+
loc: 12
|
|
1391
|
+
state: unreachable
|
|
1392
|
+
confidence: low
|
|
1393
|
+
category: unreachable
|
|
1394
|
+
status: pending
|
|
1395
|
+
review_class: candidate
|
|
1396
|
+
- corpus: rubocop_1_75_0
|
|
1397
|
+
id: RuboCop::Cop::Layout::ClosingParenthesisIndentation#first_argument_line
|
|
1398
|
+
definition_id: def:v1:e69c46a49ae115889e3a4d08e98d73947a444ae374795588045be16437900955
|
|
1399
|
+
path: lib/rubocop/cop/layout/closing_parenthesis_indentation.rb
|
|
1400
|
+
line: 167
|
|
1401
|
+
end_line: 169
|
|
1402
|
+
loc: 3
|
|
1403
|
+
state: unreachable
|
|
1404
|
+
confidence: low
|
|
1405
|
+
category: unreachable
|
|
1406
|
+
status: pending
|
|
1407
|
+
review_class: candidate
|
|
1408
|
+
- corpus: rubocop_1_75_0
|
|
1409
|
+
id: RuboCop::Cop::Layout::ClosingParenthesisIndentation#line_break_after_left_paren?
|
|
1410
|
+
definition_id: def:v1:4bf22066d1bde19046477208b9d01e223c6aaef6bb9d4da334c02d6a0a1a3a02
|
|
1411
|
+
path: lib/rubocop/cop/layout/closing_parenthesis_indentation.rb
|
|
1412
|
+
line: 187
|
|
1413
|
+
end_line: 189
|
|
1414
|
+
loc: 3
|
|
1415
|
+
state: unreachable
|
|
1416
|
+
confidence: low
|
|
1417
|
+
category: unreachable
|
|
1418
|
+
status: pending
|
|
1419
|
+
review_class: candidate
|
|
1420
|
+
- corpus: rubocop_1_75_0
|
|
1421
|
+
id: RuboCop::Cop::Layout::CommentIndentation#autocorrect_one
|
|
1422
|
+
definition_id: def:v1:8f02e475519dd4cfa9a7a50bccf58122280b1bb79f15d49956351f275f032358
|
|
1423
|
+
path: lib/rubocop/cop/layout/comment_indentation.rb
|
|
1424
|
+
line: 88
|
|
1425
|
+
end_line: 90
|
|
1426
|
+
loc: 3
|
|
1427
|
+
state: unreachable
|
|
1428
|
+
confidence: low
|
|
1429
|
+
category: unreachable
|
|
1430
|
+
status: pending
|
|
1431
|
+
review_class: candidate
|
|
1432
|
+
- corpus: rubocop_1_75_0
|
|
1433
|
+
id: RuboCop::Cop::Layout::CommentIndentation#autocorrect_preceding_comments
|
|
1434
|
+
definition_id: def:v1:fa17d135ce10fdcd2de83f1b906643310de2e120488ca95b316f43ca1b14c2e1
|
|
1435
|
+
path: lib/rubocop/cop/layout/comment_indentation.rb
|
|
1436
|
+
line: 71
|
|
1437
|
+
end_line: 80
|
|
1438
|
+
loc: 10
|
|
1439
|
+
state: unreachable
|
|
1440
|
+
confidence: low
|
|
1441
|
+
category: unreachable
|
|
1442
|
+
status: pending
|
|
1443
|
+
review_class: candidate
|
|
1444
|
+
- corpus: rubocop_1_75_0
|
|
1445
|
+
id: RuboCop::Cop::Layout::CommentIndentation#correctly_aligned_with_preceding_comment?
|
|
1446
|
+
definition_id: def:v1:67cb8c49ffcbdccca3caf3316aa38074fb659c4b0abf27e42ecf857737699641
|
|
1447
|
+
path: lib/rubocop/cop/layout/comment_indentation.rb
|
|
1448
|
+
line: 121
|
|
1449
|
+
end_line: 129
|
|
1450
|
+
loc: 9
|
|
1451
|
+
state: unreachable
|
|
1452
|
+
confidence: low
|
|
1453
|
+
category: unreachable
|
|
1454
|
+
status: pending
|
|
1455
|
+
review_class: candidate
|
|
1456
|
+
- corpus: rubocop_1_75_0
|
|
1457
|
+
id: RuboCop::Cop::Layout::CommentIndentation#less_indented?
|
|
1458
|
+
definition_id: def:v1:b13f3d89b18105abb4a96988b320b637348f8167ad57710dd90dc39736480d4b
|
|
1459
|
+
path: lib/rubocop/cop/layout/comment_indentation.rb
|
|
1460
|
+
line: 156
|
|
1461
|
+
end_line: 160
|
|
1462
|
+
loc: 5
|
|
1463
|
+
state: unreachable
|
|
1464
|
+
confidence: low
|
|
1465
|
+
category: unreachable
|
|
1466
|
+
status: pending
|
|
1467
|
+
review_class: candidate
|
|
1468
|
+
- corpus: rubocop_1_75_0
|
|
1469
|
+
id: RuboCop::Cop::Layout::CommentIndentation#line_after_comment
|
|
1470
|
+
definition_id: def:v1:c0068dcaf39e8ff318cc9d7a90098ebf9dd364dac1172159275f1328ffd477c6
|
|
1471
|
+
path: lib/rubocop/cop/layout/comment_indentation.rb
|
|
1472
|
+
line: 140
|
|
1473
|
+
end_line: 143
|
|
1474
|
+
loc: 4
|
|
1475
|
+
state: unreachable
|
|
1476
|
+
confidence: low
|
|
1477
|
+
category: unreachable
|
|
1478
|
+
status: pending
|
|
1479
|
+
review_class: candidate
|
|
1480
|
+
- corpus: rubocop_1_75_0
|
|
1481
|
+
id: RuboCop::Cop::Layout::CommentIndentation#own_line_comment?
|
|
1482
|
+
definition_id: def:v1:a5a6fecf5d04ffbed671675fae06356377b6987c951b7abaefbcef6821233b14
|
|
1483
|
+
path: lib/rubocop/cop/layout/comment_indentation.rb
|
|
1484
|
+
line: 135
|
|
1485
|
+
end_line: 138
|
|
1486
|
+
loc: 4
|
|
1487
|
+
state: unreachable
|
|
1488
|
+
confidence: low
|
|
1489
|
+
category: unreachable
|
|
1490
|
+
status: pending
|
|
1491
|
+
review_class: candidate
|
|
1492
|
+
- corpus: rubocop_1_75_0
|
|
1493
|
+
id: RuboCop::Cop::Layout::CommentIndentation#should_correct?
|
|
1494
|
+
definition_id: def:v1:3304e328ed6a287a187bae34ca56e73fcec654fcdbd70b2ce3f56373d29890f1
|
|
1495
|
+
path: lib/rubocop/cop/layout/comment_indentation.rb
|
|
1496
|
+
line: 82
|
|
1497
|
+
end_line: 86
|
|
1498
|
+
loc: 5
|
|
1499
|
+
state: unreachable
|
|
1500
|
+
confidence: low
|
|
1501
|
+
category: unreachable
|
|
1502
|
+
status: pending
|
|
1503
|
+
review_class: candidate
|
|
1504
|
+
- corpus: rubocop_1_75_0
|
|
1505
|
+
id: RuboCop::Cop::Layout::CommentIndentation#two_alternatives?
|
|
1506
|
+
definition_id: def:v1:3e23a9abe96df6e516eedff48ef20d5952b1fd051d29a22c4351f1fe876d6df5
|
|
1507
|
+
path: lib/rubocop/cop/layout/comment_indentation.rb
|
|
1508
|
+
line: 162
|
|
1509
|
+
end_line: 164
|
|
1510
|
+
loc: 3
|
|
1511
|
+
state: unreachable
|
|
1512
|
+
confidence: low
|
|
1513
|
+
category: unreachable
|
|
1514
|
+
status: pending
|
|
1515
|
+
review_class: candidate
|
|
1516
|
+
- corpus: rubocop_1_75_0
|
|
1517
|
+
id: RuboCop::Cop::Layout::DotPosition#correct_dot_position_style?
|
|
1518
|
+
definition_id: def:v1:36d7ba33230670d86c87111166cc214dfeef70b9ee058f3f924881380010d6ef
|
|
1519
|
+
path: lib/rubocop/cop/layout/dot_position.rb
|
|
1520
|
+
line: 99
|
|
1521
|
+
end_line: 104
|
|
1522
|
+
loc: 6
|
|
1523
|
+
state: unreachable
|
|
1524
|
+
confidence: low
|
|
1525
|
+
category: unreachable
|
|
1526
|
+
status: pending
|
|
1527
|
+
review_class: candidate
|
|
1528
|
+
- corpus: rubocop_1_75_0
|
|
1529
|
+
id: RuboCop::Cop::Layout::DotPosition#end_range
|
|
1530
|
+
definition_id: def:v1:175a9e1244643e25156bda06cc99bbe13e732bab6756792e027fd99d771ba552
|
|
1531
|
+
path: lib/rubocop/cop/layout/dot_position.rb
|
|
1532
|
+
line: 126
|
|
1533
|
+
end_line: 128
|
|
1534
|
+
loc: 3
|
|
1535
|
+
state: unreachable
|
|
1536
|
+
confidence: low
|
|
1537
|
+
category: unreachable
|
|
1538
|
+
status: pending
|
|
1539
|
+
review_class: candidate
|
|
1540
|
+
- corpus: rubocop_1_75_0
|
|
1541
|
+
id: RuboCop::Cop::Layout::DotPosition#last_heredoc_line
|
|
1542
|
+
definition_id: def:v1:89f8291f53efb65bb23d8fcb26cbdd01fdfaf662d9e30997a90777085273f267
|
|
1543
|
+
path: lib/rubocop/cop/layout/dot_position.rb
|
|
1544
|
+
line: 114
|
|
1545
|
+
end_line: 120
|
|
1546
|
+
loc: 7
|
|
1547
|
+
state: unreachable
|
|
1548
|
+
confidence: low
|
|
1549
|
+
category: unreachable
|
|
1550
|
+
status: pending
|
|
1551
|
+
review_class: candidate
|
|
1552
|
+
- corpus: rubocop_1_75_0
|
|
1553
|
+
id: RuboCop::Cop::Layout::DotPosition#line_between?
|
|
1554
|
+
definition_id: def:v1:e00bed2bcb63b9e04691551746ced44360e0e0fbe4fba0bac9daf97050eefd3f
|
|
1555
|
+
path: lib/rubocop/cop/layout/dot_position.rb
|
|
1556
|
+
line: 95
|
|
1557
|
+
end_line: 97
|
|
1558
|
+
loc: 3
|
|
1559
|
+
state: unreachable
|
|
1560
|
+
confidence: low
|
|
1561
|
+
category: unreachable
|
|
1562
|
+
status: pending
|
|
1563
|
+
review_class: candidate
|
|
1564
|
+
- corpus: rubocop_1_75_0
|
|
1565
|
+
id: RuboCop::Cop::Layout::DotPosition#proper_dot_position?
|
|
1566
|
+
definition_id: def:v1:aa0dd5de1841f4144d4793ccee41567b5e63a883092e7c7a62e620cc12b5dfc6
|
|
1567
|
+
path: lib/rubocop/cop/layout/dot_position.rb
|
|
1568
|
+
line: 74
|
|
1569
|
+
end_line: 93
|
|
1570
|
+
loc: 20
|
|
1571
|
+
state: unreachable
|
|
1572
|
+
confidence: low
|
|
1573
|
+
category: unreachable
|
|
1574
|
+
status: pending
|
|
1575
|
+
review_class: candidate
|
|
1576
|
+
- corpus: rubocop_1_75_0
|
|
1577
|
+
id: RuboCop::Cop::Layout::DotPosition#receiver_end_line
|
|
1578
|
+
definition_id: def:v1:073e36e0f605dcfc2049c74d83909fb89c564c8c0c371f6e1d2f152b7eda0038
|
|
1579
|
+
path: lib/rubocop/cop/layout/dot_position.rb
|
|
1580
|
+
line: 106
|
|
1581
|
+
end_line: 112
|
|
1582
|
+
loc: 7
|
|
1583
|
+
state: unreachable
|
|
1584
|
+
confidence: low
|
|
1585
|
+
category: unreachable
|
|
1586
|
+
status: pending
|
|
1587
|
+
review_class: candidate
|
|
1588
|
+
- corpus: rubocop_1_75_0
|
|
1589
|
+
id: RuboCop::Cop::Layout::ElseAlignment#base_for_method_definition
|
|
1590
|
+
definition_id: def:v1:748e2fe0b1a839477fdd3325abe66b95435bc4dcc261d59e72a7bb46c8e8a43f
|
|
1591
|
+
path: lib/rubocop/cop/layout/else_alignment.rb
|
|
1592
|
+
line: 106
|
|
1593
|
+
end_line: 113
|
|
1594
|
+
loc: 8
|
|
1595
|
+
state: unreachable
|
|
1596
|
+
confidence: low
|
|
1597
|
+
category: unreachable
|
|
1598
|
+
status: pending
|
|
1599
|
+
review_class: candidate
|
|
1600
|
+
- corpus: rubocop_1_75_0
|
|
1601
|
+
id: RuboCop::Cop::Layout::ElseAlignment#base_range_of_if
|
|
1602
|
+
definition_id: def:v1:fd5a8a236f55fe90a67d75c8574ed7f7dbb37d123385c5336f1d1dddab2ebbb4
|
|
1603
|
+
path: lib/rubocop/cop/layout/else_alignment.rb
|
|
1604
|
+
line: 80
|
|
1605
|
+
end_line: 87
|
|
1606
|
+
loc: 8
|
|
1607
|
+
state: unreachable
|
|
1608
|
+
confidence: low
|
|
1609
|
+
category: unreachable
|
|
1610
|
+
status: pending
|
|
1611
|
+
review_class: candidate
|
|
1612
|
+
- corpus: rubocop_1_75_0
|
|
1613
|
+
id: RuboCop::Cop::Layout::ElseAlignment#base_range_of_rescue
|
|
1614
|
+
definition_id: def:v1:0c39fabcede9f252ca1b4dd6dc069608dad27c46a884a66bb977c048ecea7433
|
|
1615
|
+
path: lib/rubocop/cop/layout/else_alignment.rb
|
|
1616
|
+
line: 89
|
|
1617
|
+
end_line: 104
|
|
1618
|
+
loc: 16
|
|
1619
|
+
state: unreachable
|
|
1620
|
+
confidence: low
|
|
1621
|
+
category: unreachable
|
|
1622
|
+
status: pending
|
|
1623
|
+
review_class: candidate
|
|
1624
|
+
- corpus: rubocop_1_75_0
|
|
1625
|
+
id: RuboCop::Cop::Layout::ElseAlignment#check_nested
|
|
1626
|
+
definition_id: def:v1:05a4e912d525d12ded8b7c411109add94513d0e277cac05d8442a818c4097a13
|
|
1627
|
+
path: lib/rubocop/cop/layout/else_alignment.rb
|
|
1628
|
+
line: 75
|
|
1629
|
+
end_line: 78
|
|
1630
|
+
loc: 4
|
|
1631
|
+
state: unreachable
|
|
1632
|
+
confidence: low
|
|
1633
|
+
category: unreachable
|
|
1634
|
+
status: pending
|
|
1635
|
+
review_class: candidate
|
|
1636
|
+
- corpus: rubocop_1_75_0
|
|
1637
|
+
id: RuboCop::Cop::Layout::EmptyComment#allow_border_comment?
|
|
1638
|
+
definition_id: def:v1:23cf637dcab81d663c13e9b82779cae966ef8d240c65922487d32908fcbd32ec
|
|
1639
|
+
path: lib/rubocop/cop/layout/empty_comment.rb
|
|
1640
|
+
line: 133
|
|
1641
|
+
end_line: 135
|
|
1642
|
+
loc: 3
|
|
1643
|
+
state: unreachable
|
|
1644
|
+
confidence: low
|
|
1645
|
+
category: unreachable
|
|
1646
|
+
status: pending
|
|
1647
|
+
review_class: candidate
|
|
1648
|
+
- corpus: rubocop_1_75_0
|
|
1649
|
+
id: RuboCop::Cop::Layout::EmptyComment#allow_margin_comment?
|
|
1650
|
+
definition_id: def:v1:f9da3f144b9702af1d2ecd36683c69cb96f6707a95b353ea07888053db08f521
|
|
1651
|
+
path: lib/rubocop/cop/layout/empty_comment.rb
|
|
1652
|
+
line: 137
|
|
1653
|
+
end_line: 139
|
|
1654
|
+
loc: 3
|
|
1655
|
+
state: unreachable
|
|
1656
|
+
confidence: low
|
|
1657
|
+
category: unreachable
|
|
1658
|
+
status: pending
|
|
1659
|
+
review_class: candidate
|
|
1660
|
+
- corpus: rubocop_1_75_0
|
|
1661
|
+
id: RuboCop::Cop::Layout::EmptyComment#comment_text
|
|
1662
|
+
definition_id: def:v1:966310f6c430d81ca52e645aee7935f46e6a5ba09e51fabedad7ed07d7238af5
|
|
1663
|
+
path: lib/rubocop/cop/layout/empty_comment.rb
|
|
1664
|
+
line: 129
|
|
1665
|
+
end_line: 131
|
|
1666
|
+
loc: 3
|
|
1667
|
+
state: unreachable
|
|
1668
|
+
confidence: low
|
|
1669
|
+
category: unreachable
|
|
1670
|
+
status: pending
|
|
1671
|
+
review_class: candidate
|
|
1672
|
+
- corpus: rubocop_1_75_0
|
|
1673
|
+
id: RuboCop::Cop::Layout::EmptyComment#concat_consecutive_comments
|
|
1674
|
+
definition_id: def:v1:0b82a1641872ab9e8fb1240017d4284841f983d3f36da4b5143be07eb6db3f1b
|
|
1675
|
+
path: lib/rubocop/cop/layout/empty_comment.rb
|
|
1676
|
+
line: 108
|
|
1677
|
+
end_line: 117
|
|
1678
|
+
loc: 10
|
|
1679
|
+
state: unreachable
|
|
1680
|
+
confidence: low
|
|
1681
|
+
category: unreachable
|
|
1682
|
+
status: pending
|
|
1683
|
+
review_class: candidate
|
|
1684
|
+
- corpus: rubocop_1_75_0
|
|
1685
|
+
id: RuboCop::Cop::Layout::EmptyComment#current_token
|
|
1686
|
+
definition_id: def:v1:c07ed4c2df0aa49c4cca738375e9111c785ece6aec9238f1f06ef665b7e840bf
|
|
1687
|
+
path: lib/rubocop/cop/layout/empty_comment.rb
|
|
1688
|
+
line: 141
|
|
1689
|
+
end_line: 143
|
|
1690
|
+
loc: 3
|
|
1691
|
+
state: unreachable
|
|
1692
|
+
confidence: low
|
|
1693
|
+
category: unreachable
|
|
1694
|
+
status: pending
|
|
1695
|
+
review_class: candidate
|
|
1696
|
+
- corpus: rubocop_1_75_0
|
|
1697
|
+
id: RuboCop::Cop::Layout::EmptyComment#empty_comment_only?
|
|
1698
|
+
definition_id: def:v1:7713b77b1df4019950aa88d5f4690e427e221dc2cf25770342af7a674b6a9f5a
|
|
1699
|
+
path: lib/rubocop/cop/layout/empty_comment.rb
|
|
1700
|
+
line: 119
|
|
1701
|
+
end_line: 127
|
|
1702
|
+
loc: 9
|
|
1703
|
+
state: unreachable
|
|
1704
|
+
confidence: low
|
|
1705
|
+
category: unreachable
|
|
1706
|
+
status: pending
|
|
1707
|
+
review_class: candidate
|
|
1708
|
+
- corpus: rubocop_1_75_0
|
|
1709
|
+
id: RuboCop::Cop::Layout::EmptyLineAfterGuardClause#contains_guard_clause?
|
|
1710
|
+
definition_id: def:v1:b44071eb2bd1f8b24ca11de5df161694a449445bb721c2bdac09dc31aedcf522
|
|
1711
|
+
path: lib/rubocop/cop/layout/empty_line_after_guard_clause.rb
|
|
1712
|
+
line: 106
|
|
1713
|
+
end_line: 108
|
|
1714
|
+
loc: 3
|
|
1715
|
+
state: unreachable
|
|
1716
|
+
confidence: low
|
|
1717
|
+
category: unreachable
|
|
1718
|
+
status: pending
|
|
1719
|
+
review_class: candidate
|
|
1720
|
+
- corpus: rubocop_1_75_0
|
|
1721
|
+
id: RuboCop::Cop::Layout::EmptyLineAfterGuardClause#correct_style?
|
|
1722
|
+
definition_id: def:v1:2a29938f5319f360657ebbb1f4ca180a243ddacc556f3390863b686e489ccfdf
|
|
1723
|
+
path: lib/rubocop/cop/layout/empty_line_after_guard_clause.rb
|
|
1724
|
+
line: 99
|
|
1725
|
+
end_line: 104
|
|
1726
|
+
loc: 6
|
|
1727
|
+
state: unreachable
|
|
1728
|
+
confidence: low
|
|
1729
|
+
category: unreachable
|
|
1730
|
+
status: pending
|
|
1731
|
+
review_class: candidate
|
|
1732
|
+
- corpus: rubocop_1_75_0
|
|
1733
|
+
id: RuboCop::Cop::Layout::EmptyLineAfterGuardClause#heredoc_line
|
|
1734
|
+
definition_id: def:v1:64878f958406e6e01de9cacc31dea558054ec9866e062ca425e1300e0eaaea0f
|
|
1735
|
+
path: lib/rubocop/cop/layout/empty_line_after_guard_clause.rb
|
|
1736
|
+
line: 174
|
|
1737
|
+
end_line: 179
|
|
1738
|
+
loc: 6
|
|
1739
|
+
state: unreachable
|
|
1740
|
+
confidence: low
|
|
1741
|
+
category: unreachable
|
|
1742
|
+
status: pending
|
|
1743
|
+
review_class: candidate
|
|
1744
|
+
- corpus: rubocop_1_75_0
|
|
1745
|
+
id: RuboCop::Cop::Layout::EmptyLineAfterGuardClause#last_heredoc_argument_node
|
|
1746
|
+
definition_id: def:v1:b1ee2b6d84952699da24cad9ab2e940d91c2cf155cac9c6067bd46356c27ba09
|
|
1747
|
+
path: lib/rubocop/cop/layout/empty_line_after_guard_clause.rb
|
|
1748
|
+
line: 162
|
|
1749
|
+
end_line: 172
|
|
1750
|
+
loc: 11
|
|
1751
|
+
state: unreachable
|
|
1752
|
+
confidence: low
|
|
1753
|
+
category: unreachable
|
|
1754
|
+
status: pending
|
|
1755
|
+
review_class: candidate
|
|
1756
|
+
- corpus: rubocop_1_75_0
|
|
1757
|
+
id: RuboCop::Cop::Layout::EmptyLineAfterGuardClause#multiple_statements_on_line?
|
|
1758
|
+
definition_id: def:v1:e0c90f1322d86025fb38ff915df684b19dbaacae237fc6c20467c0634aff92b4
|
|
1759
|
+
path: lib/rubocop/cop/layout/empty_line_after_guard_clause.rb
|
|
1760
|
+
line: 199
|
|
1761
|
+
end_line: 204
|
|
1762
|
+
loc: 6
|
|
1763
|
+
state: unreachable
|
|
1764
|
+
confidence: low
|
|
1765
|
+
category: unreachable
|
|
1766
|
+
status: pending
|
|
1767
|
+
review_class: candidate
|
|
1768
|
+
- corpus: rubocop_1_75_0
|
|
1769
|
+
id: RuboCop::Cop::Layout::EmptyLineAfterGuardClause#next_line_allowed_directive_comment?
|
|
1770
|
+
definition_id: def:v1:395256af1696b87d4f468132b1653459c0bcdb1d5c1fb411019160a1e829d664
|
|
1771
|
+
path: lib/rubocop/cop/layout/empty_line_after_guard_clause.rb
|
|
1772
|
+
line: 121
|
|
1773
|
+
end_line: 125
|
|
1774
|
+
loc: 5
|
|
1775
|
+
state: unreachable
|
|
1776
|
+
confidence: low
|
|
1777
|
+
category: unreachable
|
|
1778
|
+
status: pending
|
|
1779
|
+
review_class: candidate
|
|
1780
|
+
- corpus: rubocop_1_75_0
|
|
1781
|
+
id: RuboCop::Cop::Layout::EmptyLineAfterGuardClause#next_line_empty_or_allowed_directive_comment?
|
|
1782
|
+
definition_id: def:v1:0af7fb215de3915cb3cdab3f8de8a7f938136c7bdebf013eba2584c5b9e3c835
|
|
1783
|
+
path: lib/rubocop/cop/layout/empty_line_after_guard_clause.rb
|
|
1784
|
+
line: 110
|
|
1785
|
+
end_line: 115
|
|
1786
|
+
loc: 6
|
|
1787
|
+
state: unreachable
|
|
1788
|
+
confidence: low
|
|
1789
|
+
category: unreachable
|
|
1790
|
+
status: pending
|
|
1791
|
+
review_class: candidate
|
|
1792
|
+
- corpus: rubocop_1_75_0
|
|
1793
|
+
id: RuboCop::Cop::Layout::EmptyLineAfterGuardClause#next_line_rescue_or_ensure?
|
|
1794
|
+
definition_id: def:v1:f2906c9318700d184974b3647fa4b11e8d46b047f2ed153a6c72d5ebb6269a79
|
|
1795
|
+
path: lib/rubocop/cop/layout/empty_line_after_guard_clause.rb
|
|
1796
|
+
line: 127
|
|
1797
|
+
end_line: 130
|
|
1798
|
+
loc: 4
|
|
1799
|
+
state: unreachable
|
|
1800
|
+
confidence: low
|
|
1801
|
+
category: unreachable
|
|
1802
|
+
status: pending
|
|
1803
|
+
review_class: candidate
|
|
1804
|
+
- corpus: rubocop_1_75_0
|
|
1805
|
+
id: RuboCop::Cop::Layout::EmptyLineAfterGuardClause#next_sibling_empty_or_guard_clause?
|
|
1806
|
+
definition_id: def:v1:c15c3ffc970a24fa98aefa51084df00318c8363f324044c23f99da8b4ea8319e
|
|
1807
|
+
path: lib/rubocop/cop/layout/empty_line_after_guard_clause.rb
|
|
1808
|
+
line: 141
|
|
1809
|
+
end_line: 146
|
|
1810
|
+
loc: 6
|
|
1811
|
+
state: unreachable
|
|
1812
|
+
confidence: low
|
|
1813
|
+
category: unreachable
|
|
1814
|
+
status: pending
|
|
1815
|
+
review_class: candidate
|
|
1816
|
+
- corpus: rubocop_1_75_0
|
|
1817
|
+
id: RuboCop::Cop::Layout::EmptyLineAfterGuardClause#next_sibling_parent_empty_or_else?
|
|
1818
|
+
definition_id: def:v1:45fbf396eb86766bff3c5a5d8f6d4b90f8777a24f0ab2d98f5bc452453b76dad
|
|
1819
|
+
path: lib/rubocop/cop/layout/empty_line_after_guard_clause.rb
|
|
1820
|
+
line: 132
|
|
1821
|
+
end_line: 139
|
|
1822
|
+
loc: 8
|
|
1823
|
+
state: unreachable
|
|
1824
|
+
confidence: low
|
|
1825
|
+
category: unreachable
|
|
1826
|
+
status: pending
|
|
1827
|
+
review_class: candidate
|
|
1828
|
+
- corpus: rubocop_1_75_0
|
|
1829
|
+
id: RuboCop::Cop::Layout::EmptyLineAfterGuardClause#offense_location
|
|
1830
|
+
definition_id: def:v1:73467c9d41a87d3cd1bcbf9726844945a2756df0bbcdea612988465f3872f21b
|
|
1831
|
+
path: lib/rubocop/cop/layout/empty_line_after_guard_clause.rb
|
|
1832
|
+
line: 191
|
|
1833
|
+
end_line: 197
|
|
1834
|
+
loc: 7
|
|
1835
|
+
state: unreachable
|
|
1836
|
+
confidence: low
|
|
1837
|
+
category: unreachable
|
|
1838
|
+
status: pending
|
|
1839
|
+
review_class: candidate
|
|
1840
|
+
- corpus: rubocop_1_75_0
|
|
1841
|
+
id: RuboCop::Cop::Layout::EmptyLineAfterGuardClause#simplecov_directive_comment?
|
|
1842
|
+
definition_id: def:v1:ca7d7417442b66fb702846e093e664732b525d38814512a8673e108e4758f48f
|
|
1843
|
+
path: lib/rubocop/cop/layout/empty_line_after_guard_clause.rb
|
|
1844
|
+
line: 208
|
|
1845
|
+
end_line: 210
|
|
1846
|
+
loc: 3
|
|
1847
|
+
state: unreachable
|
|
1848
|
+
confidence: low
|
|
1849
|
+
category: unreachable
|
|
1850
|
+
status: pending
|
|
1851
|
+
review_class: candidate
|
|
1852
|
+
- corpus: rubocop_1_75_0
|
|
1853
|
+
id: RuboCop::Cop::Layout::EmptyLineAfterGuardClause#use_heredoc_in_condition?
|
|
1854
|
+
definition_id: def:v1:bf73a48d186c627db96294863e31640c978a8272b137e44eaa4846c84365292b
|
|
1855
|
+
path: lib/rubocop/cop/layout/empty_line_after_guard_clause.rb
|
|
1856
|
+
line: 185
|
|
1857
|
+
end_line: 189
|
|
1858
|
+
loc: 5
|
|
1859
|
+
state: unreachable
|
|
1860
|
+
confidence: low
|
|
1861
|
+
category: unreachable
|
|
1862
|
+
status: pending
|
|
1863
|
+
review_class: candidate
|
|
1864
|
+
- corpus: rubocop_1_75_0
|
|
1865
|
+
id: RuboCop::Cop::Layout::EmptyLineAfterMagicComment#comments_before_code
|
|
1866
|
+
definition_id: def:v1:e26f647732540e2196435d95e02a450a09931172efe3817eee8ed6b6754e9cd8
|
|
1867
|
+
path: lib/rubocop/cop/layout/empty_line_after_magic_comment.rb
|
|
1868
|
+
line: 61
|
|
1869
|
+
end_line: 67
|
|
1870
|
+
loc: 7
|
|
1871
|
+
state: unreachable
|
|
1872
|
+
confidence: low
|
|
1873
|
+
category: unreachable
|
|
1874
|
+
status: pending
|
|
1875
|
+
review_class: candidate
|
|
1876
|
+
- corpus: rubocop_1_75_0
|
|
1877
|
+
id: RuboCop::Cop::Layout::EmptyLineAfterMagicComment#last_magic_comment
|
|
1878
|
+
definition_id: def:v1:f12a625047e2b65dc6e525e897aa405edb8f916904b89678cc000cd48a822df0
|
|
1879
|
+
path: lib/rubocop/cop/layout/empty_line_after_magic_comment.rb
|
|
1880
|
+
line: 55
|
|
1881
|
+
end_line: 59
|
|
1882
|
+
loc: 5
|
|
1883
|
+
state: unreachable
|
|
1884
|
+
confidence: low
|
|
1885
|
+
category: unreachable
|
|
1886
|
+
status: pending
|
|
1887
|
+
review_class: candidate
|
|
1888
|
+
- corpus: rubocop_1_75_0
|
|
1889
|
+
id: RuboCop::Cop::Layout::EmptyLineAfterMultilineCondition#check_condition
|
|
1890
|
+
definition_id: def:v1:d251b5576ce66e3ca10954d8f7a7f143e9ea27c7f665c02f8c713b5b7546f4a9
|
|
1891
|
+
path: lib/rubocop/cop/layout/empty_line_after_multiline_condition.rb
|
|
1892
|
+
line: 105
|
|
1893
|
+
end_line: 110
|
|
1894
|
+
loc: 6
|
|
1895
|
+
state: unreachable
|
|
1896
|
+
confidence: low
|
|
1897
|
+
category: unreachable
|
|
1898
|
+
status: pending
|
|
1899
|
+
review_class: candidate
|
|
1900
|
+
- corpus: rubocop_1_75_0
|
|
1901
|
+
id: RuboCop::Cop::Layout::EmptyLineAfterMultilineCondition#multiline_rescue_exceptions?
|
|
1902
|
+
definition_id: def:v1:3bd96656cc2ddb1dd4b8486f17d869ec48f7e200e02d65a98948b0e2655a9ea5
|
|
1903
|
+
path: lib/rubocop/cop/layout/empty_line_after_multiline_condition.rb
|
|
1904
|
+
line: 120
|
|
1905
|
+
end_line: 125
|
|
1906
|
+
loc: 6
|
|
1907
|
+
state: unreachable
|
|
1908
|
+
confidence: low
|
|
1909
|
+
category: unreachable
|
|
1910
|
+
status: pending
|
|
1911
|
+
review_class: candidate
|
|
1912
|
+
- corpus: rubocop_1_75_0
|
|
1913
|
+
id: RuboCop::Cop::Layout::EmptyLineAfterMultilineCondition#multiline_when_condition?
|
|
1914
|
+
definition_id: def:v1:973ed21597fd38402e7e7cb4ab2bc217887a1251cd211ae3c648b8d7bed9ebfc
|
|
1915
|
+
path: lib/rubocop/cop/layout/empty_line_after_multiline_condition.rb
|
|
1916
|
+
line: 116
|
|
1917
|
+
end_line: 118
|
|
1918
|
+
loc: 3
|
|
1919
|
+
state: unreachable
|
|
1920
|
+
confidence: low
|
|
1921
|
+
category: unreachable
|
|
1922
|
+
status: pending
|
|
1923
|
+
review_class: candidate
|
|
1924
|
+
- corpus: rubocop_1_75_0
|
|
1925
|
+
id: RuboCop::Cop::Layout::EmptyLineBetweenDefs#allowance_range?
|
|
1926
|
+
definition_id: def:v1:6d3bcdc745d341986394364263dab61603a3134ef0b2a8e8c2816d4f711a924f
|
|
1927
|
+
path: lib/rubocop/cop/layout/empty_line_between_defs.rb
|
|
1928
|
+
line: 287
|
|
1929
|
+
end_line: 289
|
|
1930
|
+
loc: 3
|
|
1931
|
+
state: unreachable
|
|
1932
|
+
confidence: low
|
|
1933
|
+
category: unreachable
|
|
1934
|
+
status: pending
|
|
1935
|
+
review_class: candidate
|
|
1936
|
+
- corpus: rubocop_1_75_0
|
|
1937
|
+
id: RuboCop::Cop::Layout::EmptyLineBetweenDefs#autocorrect_insert_lines
|
|
1938
|
+
definition_id: def:v1:d443f6432a495f3b4b22f7f60202214622553d38ffa0d6739234370ece1d3db6
|
|
1939
|
+
path: lib/rubocop/cop/layout/empty_line_between_defs.rb
|
|
1940
|
+
line: 269
|
|
1941
|
+
end_line: 274
|
|
1942
|
+
loc: 6
|
|
1943
|
+
state: unreachable
|
|
1944
|
+
confidence: low
|
|
1945
|
+
category: unreachable
|
|
1946
|
+
status: pending
|
|
1947
|
+
review_class: candidate
|
|
1948
|
+
- corpus: rubocop_1_75_0
|
|
1949
|
+
id: RuboCop::Cop::Layout::EmptyLineBetweenDefs#autocorrect_remove_lines
|
|
1950
|
+
definition_id: def:v1:5ed847234f32e665a91e9afe6c8af3fca903e693e092f13e477e0c12b567908e
|
|
1951
|
+
path: lib/rubocop/cop/layout/empty_line_between_defs.rb
|
|
1952
|
+
line: 262
|
|
1953
|
+
end_line: 267
|
|
1954
|
+
loc: 6
|
|
1955
|
+
state: unreachable
|
|
1956
|
+
confidence: low
|
|
1957
|
+
category: unreachable
|
|
1958
|
+
status: pending
|
|
1959
|
+
review_class: candidate
|
|
1960
|
+
- corpus: rubocop_1_75_0
|
|
1961
|
+
id: RuboCop::Cop::Layout::EmptyLineBetweenDefs#blank_lines_count_between
|
|
1962
|
+
definition_id: def:v1:3c922523b8a647d1906daee23a6a167eb175dc866e4cd6f10646e78aa82a7856
|
|
1963
|
+
path: lib/rubocop/cop/layout/empty_line_between_defs.rb
|
|
1964
|
+
line: 222
|
|
1965
|
+
end_line: 224
|
|
1966
|
+
loc: 3
|
|
1967
|
+
state: unreachable
|
|
1968
|
+
confidence: low
|
|
1969
|
+
category: unreachable
|
|
1970
|
+
status: pending
|
|
1971
|
+
review_class: candidate
|
|
1972
|
+
- corpus: rubocop_1_75_0
|
|
1973
|
+
id: RuboCop::Cop::Layout::EmptyLineBetweenDefs#candidate?
|
|
1974
|
+
definition_id: def:v1:9d82fe76abfc6492396341c9db674c0aea8e2d7ad75d0028557888896d35e08b
|
|
1975
|
+
path: lib/rubocop/cop/layout/empty_line_between_defs.rb
|
|
1976
|
+
line: 166
|
|
1977
|
+
end_line: 171
|
|
1978
|
+
loc: 6
|
|
1979
|
+
state: unreachable
|
|
1980
|
+
confidence: low
|
|
1981
|
+
category: unreachable
|
|
1982
|
+
status: pending
|
|
1983
|
+
review_class: candidate
|
|
1984
|
+
- corpus: rubocop_1_75_0
|
|
1985
|
+
id: RuboCop::Cop::Layout::EmptyLineBetweenDefs#class_candidate?
|
|
1986
|
+
definition_id: def:v1:c4cedd47b806c12b6491f1b25542839bb52d9136f0dc5f0fb30c230224e6b37a
|
|
1987
|
+
path: lib/rubocop/cop/layout/empty_line_between_defs.rb
|
|
1988
|
+
line: 186
|
|
1989
|
+
end_line: 188
|
|
1990
|
+
loc: 3
|
|
1991
|
+
state: unreachable
|
|
1992
|
+
confidence: low
|
|
1993
|
+
category: unreachable
|
|
1994
|
+
status: pending
|
|
1995
|
+
review_class: candidate
|
|
1996
|
+
- corpus: rubocop_1_75_0
|
|
1997
|
+
id: RuboCop::Cop::Layout::EmptyLineBetweenDefs#def_end
|
|
1998
|
+
definition_id: def:v1:b5447936f495f47227a766e9337a328896825838239b7826f546b154d5895f5b
|
|
1999
|
+
path: lib/rubocop/cop/layout/empty_line_between_defs.rb
|
|
2000
|
+
line: 250
|
|
2001
|
+
end_line: 252
|
|
2002
|
+
loc: 3
|
|
2003
|
+
state: unreachable
|
|
2004
|
+
confidence: low
|
|
2005
|
+
category: unreachable
|
|
2006
|
+
status: pending
|
|
2007
|
+
review_class: candidate
|
|
2008
|
+
- corpus: rubocop_1_75_0
|
|
2009
|
+
id: RuboCop::Cop::Layout::EmptyLineBetweenDefs#def_location
|
|
2010
|
+
definition_id: def:v1:225af1d50b72895cc770a55df90ad363f27f96bf2f6006e2b55a3cd3b8224dbb
|
|
2011
|
+
path: lib/rubocop/cop/layout/empty_line_between_defs.rb
|
|
2012
|
+
line: 158
|
|
2013
|
+
end_line: 164
|
|
2014
|
+
loc: 7
|
|
2015
|
+
state: unreachable
|
|
2016
|
+
confidence: low
|
|
2017
|
+
category: unreachable
|
|
2018
|
+
status: pending
|
|
2019
|
+
review_class: candidate
|
|
2020
|
+
- corpus: rubocop_1_75_0
|
|
2021
|
+
id: RuboCop::Cop::Layout::EmptyLineBetweenDefs#def_start
|
|
2022
|
+
definition_id: def:v1:62c70545c08bb46f104a340f78cac1a2efaa435d1f0dfddfa3fad0b969af5c14
|
|
2023
|
+
path: lib/rubocop/cop/layout/empty_line_between_defs.rb
|
|
2024
|
+
line: 242
|
|
2025
|
+
end_line: 248
|
|
2026
|
+
loc: 7
|
|
2027
|
+
state: unreachable
|
|
2028
|
+
confidence: low
|
|
2029
|
+
category: unreachable
|
|
2030
|
+
status: pending
|
|
2031
|
+
review_class: candidate
|
|
2032
|
+
- corpus: rubocop_1_75_0
|
|
2033
|
+
id: RuboCop::Cop::Layout::EmptyLineBetweenDefs#empty_line_between_macros
|
|
2034
|
+
definition_id: def:v1:1e26a727848e950ae2e4d1813943ab5045a8b1024f7b2a7c355e85d5d3a00e4a
|
|
2035
|
+
path: lib/rubocop/cop/layout/empty_line_between_defs.rb
|
|
2036
|
+
line: 173
|
|
2037
|
+
end_line: 175
|
|
2038
|
+
loc: 3
|
|
2039
|
+
state: unreachable
|
|
2040
|
+
confidence: low
|
|
2041
|
+
category: unreachable
|
|
2042
|
+
status: pending
|
|
2043
|
+
review_class: candidate
|
|
2044
|
+
- corpus: rubocop_1_75_0
|
|
2045
|
+
id: RuboCop::Cop::Layout::EmptyLineBetweenDefs#end_loc
|
|
2046
|
+
definition_id: def:v1:c0d553939628071e08c67896383b00bb78acf6e41ef824eb46632cf58b0acfe0
|
|
2047
|
+
path: lib/rubocop/cop/layout/empty_line_between_defs.rb
|
|
2048
|
+
line: 254
|
|
2049
|
+
end_line: 260
|
|
2050
|
+
loc: 7
|
|
2051
|
+
state: unreachable
|
|
2052
|
+
confidence: low
|
|
2053
|
+
category: unreachable
|
|
2054
|
+
status: pending
|
|
2055
|
+
review_class: candidate
|
|
2056
|
+
- corpus: rubocop_1_75_0
|
|
2057
|
+
id: RuboCop::Cop::Layout::EmptyLineBetweenDefs#expected_lines
|
|
2058
|
+
definition_id: def:v1:5127cfb0822d376e72be51cff7ec6d551e76e006e2a88168b36a1ef4ca662281
|
|
2059
|
+
path: lib/rubocop/cop/layout/empty_line_between_defs.rb
|
|
2060
|
+
line: 200
|
|
2061
|
+
end_line: 207
|
|
2062
|
+
loc: 8
|
|
2063
|
+
state: unreachable
|
|
2064
|
+
confidence: low
|
|
2065
|
+
category: unreachable
|
|
2066
|
+
status: pending
|
|
2067
|
+
review_class: candidate
|
|
2068
|
+
- corpus: rubocop_1_75_0
|
|
2069
|
+
id: RuboCop::Cop::Layout::EmptyLineBetweenDefs#line_count_allowed?
|
|
2070
|
+
definition_id: def:v1:bdc0643da0d4fa0362c9843981b3228ba7da26c5512d0e40b6af1324d59cf6d7
|
|
2071
|
+
path: lib/rubocop/cop/layout/empty_line_between_defs.rb
|
|
2072
|
+
line: 218
|
|
2073
|
+
end_line: 220
|
|
2074
|
+
loc: 3
|
|
2075
|
+
state: unreachable
|
|
2076
|
+
confidence: low
|
|
2077
|
+
category: unreachable
|
|
2078
|
+
status: pending
|
|
2079
|
+
review_class: candidate
|
|
2080
|
+
- corpus: rubocop_1_75_0
|
|
2081
|
+
id: RuboCop::Cop::Layout::EmptyLineBetweenDefs#lines_between_defs
|
|
2082
|
+
definition_id: def:v1:c1e8cdf43e1501d7982560138703e134c476a0366702fe974bda5d893dc903c9
|
|
2083
|
+
path: lib/rubocop/cop/layout/empty_line_between_defs.rb
|
|
2084
|
+
line: 234
|
|
2085
|
+
end_line: 240
|
|
2086
|
+
loc: 7
|
|
2087
|
+
state: unreachable
|
|
2088
|
+
confidence: low
|
|
2089
|
+
category: unreachable
|
|
2090
|
+
status: pending
|
|
2091
|
+
review_class: candidate
|
|
2092
|
+
- corpus: rubocop_1_75_0
|
|
2093
|
+
id: RuboCop::Cop::Layout::EmptyLineBetweenDefs#macro_candidate?
|
|
2094
|
+
definition_id: def:v1:180edf43160fdb2bb3d0d6ad3a3f2ef4edfb23ae0280b360118acc2ec363d903
|
|
2095
|
+
path: lib/rubocop/cop/layout/empty_line_between_defs.rb
|
|
2096
|
+
line: 177
|
|
2097
|
+
end_line: 180
|
|
2098
|
+
loc: 4
|
|
2099
|
+
state: unreachable
|
|
2100
|
+
confidence: low
|
|
2101
|
+
category: unreachable
|
|
2102
|
+
status: pending
|
|
2103
|
+
review_class: candidate
|
|
2104
|
+
- corpus: rubocop_1_75_0
|
|
2105
|
+
id: RuboCop::Cop::Layout::EmptyLineBetweenDefs#maximum_empty_lines
|
|
2106
|
+
definition_id: def:v1:c5691c869b25fcf8c06d3a27bf825fb966e8f86fa39adb935303cd292a0af6ff
|
|
2107
|
+
path: lib/rubocop/cop/layout/empty_line_between_defs.rb
|
|
2108
|
+
line: 230
|
|
2109
|
+
end_line: 232
|
|
2110
|
+
loc: 3
|
|
2111
|
+
state: unreachable
|
|
2112
|
+
confidence: low
|
|
2113
|
+
category: unreachable
|
|
2114
|
+
status: pending
|
|
2115
|
+
review_class: candidate
|
|
2116
|
+
- corpus: rubocop_1_75_0
|
|
2117
|
+
id: RuboCop::Cop::Layout::EmptyLineBetweenDefs#method_candidate?
|
|
2118
|
+
definition_id: def:v1:8af43d5c40bc4b9e6a8b54daaeff4973bf81698b266e1623de987eab66218639
|
|
2119
|
+
path: lib/rubocop/cop/layout/empty_line_between_defs.rb
|
|
2120
|
+
line: 182
|
|
2121
|
+
end_line: 184
|
|
2122
|
+
loc: 3
|
|
2123
|
+
state: unreachable
|
|
2124
|
+
confidence: low
|
|
2125
|
+
category: unreachable
|
|
2126
|
+
status: pending
|
|
2127
|
+
review_class: candidate
|
|
2128
|
+
- corpus: rubocop_1_75_0
|
|
2129
|
+
id: RuboCop::Cop::Layout::EmptyLineBetweenDefs#minimum_empty_lines
|
|
2130
|
+
definition_id: def:v1:752f0381aa6d9d80a64695c02eb12b824b1bfe6a2705fec6276259815de79075
|
|
2131
|
+
path: lib/rubocop/cop/layout/empty_line_between_defs.rb
|
|
2132
|
+
line: 226
|
|
2133
|
+
end_line: 228
|
|
2134
|
+
loc: 3
|
|
2135
|
+
state: unreachable
|
|
2136
|
+
confidence: low
|
|
2137
|
+
category: unreachable
|
|
2138
|
+
status: pending
|
|
2139
|
+
review_class: candidate
|
|
2140
|
+
- corpus: rubocop_1_75_0
|
|
2141
|
+
id: RuboCop::Cop::Layout::EmptyLineBetweenDefs#module_candidate?
|
|
2142
|
+
definition_id: def:v1:d300033aec19687862188ad4946a50dbfdbfc768b936b2401a08bec9fe692f9e
|
|
2143
|
+
path: lib/rubocop/cop/layout/empty_line_between_defs.rb
|
|
2144
|
+
line: 190
|
|
2145
|
+
end_line: 192
|
|
2146
|
+
loc: 3
|
|
2147
|
+
state: unreachable
|
|
2148
|
+
confidence: low
|
|
2149
|
+
category: unreachable
|
|
2150
|
+
status: pending
|
|
2151
|
+
review_class: candidate
|
|
2152
|
+
- corpus: rubocop_1_75_0
|
|
2153
|
+
id: RuboCop::Cop::Layout::EmptyLineBetweenDefs#multiple_blank_lines_groups?
|
|
2154
|
+
definition_id: def:v1:4c2b29995b77d19104c80086a49f3b2ef1decdc1af2f99feae4ed6b5d983f108
|
|
2155
|
+
path: lib/rubocop/cop/layout/empty_line_between_defs.rb
|
|
2156
|
+
line: 209
|
|
2157
|
+
end_line: 216
|
|
2158
|
+
loc: 8
|
|
2159
|
+
state: unreachable
|
|
2160
|
+
confidence: low
|
|
2161
|
+
category: unreachable
|
|
2162
|
+
status: pending
|
|
2163
|
+
review_class: candidate
|
|
2164
|
+
- corpus: rubocop_1_75_0
|
|
2165
|
+
id: RuboCop::Cop::Layout::EmptyLineBetweenDefs#node_type
|
|
2166
|
+
definition_id: def:v1:5362f8de84757f268f7e803325a21197d227e6f4663891b78f9bce809edb11b3
|
|
2167
|
+
path: lib/rubocop/cop/layout/empty_line_between_defs.rb
|
|
2168
|
+
line: 276
|
|
2169
|
+
end_line: 285
|
|
2170
|
+
loc: 10
|
|
2171
|
+
state: unreachable
|
|
2172
|
+
confidence: low
|
|
2173
|
+
category: unreachable
|
|
2174
|
+
status: pending
|
|
2175
|
+
review_class: candidate
|
|
2176
|
+
- corpus: rubocop_1_75_0
|
|
2177
|
+
id: RuboCop::Cop::Layout::EmptyLines#each_extra_empty_line
|
|
2178
|
+
definition_id: def:v1:bd2e3a774fba613978dc1d96ffff3480c0a4bbbf8feb97b2f6520a3da86dce9d
|
|
2179
|
+
path: lib/rubocop/cop/layout/empty_lines.rb
|
|
2180
|
+
line: 45
|
|
2181
|
+
end_line: 61
|
|
2182
|
+
loc: 17
|
|
2183
|
+
state: unreachable
|
|
2184
|
+
confidence: low
|
|
2185
|
+
category: unreachable
|
|
2186
|
+
status: pending
|
|
2187
|
+
review_class: candidate
|
|
2188
|
+
- corpus: rubocop_1_75_0
|
|
2189
|
+
id: RuboCop::Cop::Layout::EmptyLines#exceeds_line_offset?
|
|
2190
|
+
definition_id: def:v1:c8267bd6e6ef22b155bd6edbe33d7e33bad452ba05704a7b1b3c3189383b33de
|
|
2191
|
+
path: lib/rubocop/cop/layout/empty_lines.rb
|
|
2192
|
+
line: 63
|
|
2193
|
+
end_line: 65
|
|
2194
|
+
loc: 3
|
|
2195
|
+
state: unreachable
|
|
2196
|
+
confidence: low
|
|
2197
|
+
category: unreachable
|
|
2198
|
+
status: pending
|
|
2199
|
+
review_class: candidate
|
|
2200
|
+
- corpus: rubocop_1_75_0
|
|
2201
|
+
id: RuboCop::Cop::Layout::EmptyLines#previous_and_current_lines_empty?
|
|
2202
|
+
definition_id: def:v1:112beea09ee9fd93fcf651e4fc9fd194a12ecee7b3ce11b19a9d383b60735c47
|
|
2203
|
+
path: lib/rubocop/cop/layout/empty_lines.rb
|
|
2204
|
+
line: 67
|
|
2205
|
+
end_line: 69
|
|
2206
|
+
loc: 3
|
|
2207
|
+
state: unreachable
|
|
2208
|
+
confidence: low
|
|
2209
|
+
category: unreachable
|
|
2210
|
+
status: pending
|
|
2211
|
+
review_class: candidate
|
|
2212
|
+
- corpus: rubocop_1_75_0
|
|
2213
|
+
id: RuboCop::Cop::Layout::EmptyLinesAroundAccessModifier#allowed_only_before_style?
|
|
2214
|
+
definition_id: def:v1:ad49bea23ecfd564618fcfcd672bc79dfc62b35d6af9f8af98daa7efe5875aca
|
|
2215
|
+
path: lib/rubocop/cop/layout/empty_lines_around_access_modifier.rb
|
|
2216
|
+
line: 116
|
|
2217
|
+
end_line: 123
|
|
2218
|
+
loc: 8
|
|
2219
|
+
state: unreachable
|
|
2220
|
+
confidence: low
|
|
2221
|
+
category: unreachable
|
|
2222
|
+
status: pending
|
|
2223
|
+
review_class: candidate
|
|
2224
|
+
- corpus: rubocop_1_75_0
|
|
2225
|
+
id: RuboCop::Cop::Layout::EmptyLinesAroundAccessModifier#block_start?
|
|
2226
|
+
definition_id: def:v1:79c352b1aecc4d824f509dd65cc5f926eff463054308ee1f4a5417f8fc936029
|
|
2227
|
+
path: lib/rubocop/cop/layout/empty_lines_around_access_modifier.rb
|
|
2228
|
+
line: 167
|
|
2229
|
+
end_line: 171
|
|
2230
|
+
loc: 5
|
|
2231
|
+
state: unreachable
|
|
2232
|
+
confidence: low
|
|
2233
|
+
category: unreachable
|
|
2234
|
+
status: pending
|
|
2235
|
+
review_class: candidate
|
|
2236
|
+
- corpus: rubocop_1_75_0
|
|
2237
|
+
id: RuboCop::Cop::Layout::EmptyLinesAroundAccessModifier#body_end?
|
|
2238
|
+
definition_id: def:v1:1268790e3aceed490d38bbf924ec8b0451d9bd6e3af7d317b11b533d5e791ee2
|
|
2239
|
+
path: lib/rubocop/cop/layout/empty_lines_around_access_modifier.rb
|
|
2240
|
+
line: 173
|
|
2241
|
+
end_line: 177
|
|
2242
|
+
loc: 5
|
|
2243
|
+
state: unreachable
|
|
2244
|
+
confidence: low
|
|
2245
|
+
category: unreachable
|
|
2246
|
+
status: pending
|
|
2247
|
+
review_class: candidate
|
|
2248
|
+
- corpus: rubocop_1_75_0
|
|
2249
|
+
id: RuboCop::Cop::Layout::EmptyLinesAroundAccessModifier#class_def?
|
|
2250
|
+
definition_id: def:v1:6a5eeaeccd1d9e2a587dc27fa09eea1624b81042ff1ce4e2b879b62140b06f66
|
|
2251
|
+
path: lib/rubocop/cop/layout/empty_lines_around_access_modifier.rb
|
|
2252
|
+
line: 161
|
|
2253
|
+
end_line: 165
|
|
2254
|
+
loc: 5
|
|
2255
|
+
state: unreachable
|
|
2256
|
+
confidence: low
|
|
2257
|
+
category: unreachable
|
|
2258
|
+
status: pending
|
|
2259
|
+
review_class: candidate
|
|
2260
|
+
- corpus: rubocop_1_75_0
|
|
2261
|
+
id: RuboCop::Cop::Layout::EmptyLinesAroundAccessModifier#correct_next_line_if_denied_style
|
|
2262
|
+
definition_id: def:v1:ee52544b2815ad73060bcb2e37b765a5811fcaa03cbb935f269ec63396fdfed6
|
|
2263
|
+
path: lib/rubocop/cop/layout/empty_lines_around_access_modifier.rb
|
|
2264
|
+
line: 125
|
|
2265
|
+
end_line: 138
|
|
2266
|
+
loc: 14
|
|
2267
|
+
state: unreachable
|
|
2268
|
+
confidence: low
|
|
2269
|
+
category: unreachable
|
|
2270
|
+
status: pending
|
|
2271
|
+
review_class: candidate
|
|
2272
|
+
- corpus: rubocop_1_75_0
|
|
2273
|
+
id: RuboCop::Cop::Layout::EmptyLinesAroundAccessModifier#empty_lines_around?
|
|
2274
|
+
definition_id: def:v1:4b249a2a96c63ffd27d9e746d4e91dc2d7faa54dff26bdfc4338bb8c9dc422f7
|
|
2275
|
+
path: lib/rubocop/cop/layout/empty_lines_around_access_modifier.rb
|
|
2276
|
+
line: 157
|
|
2277
|
+
end_line: 159
|
|
2278
|
+
loc: 3
|
|
2279
|
+
state: unreachable
|
|
2280
|
+
confidence: low
|
|
2281
|
+
category: unreachable
|
|
2282
|
+
status: pending
|
|
2283
|
+
review_class: candidate
|
|
2284
|
+
- corpus: rubocop_1_75_0
|
|
2285
|
+
id: RuboCop::Cop::Layout::EmptyLinesAroundAccessModifier#expected_empty_lines?
|
|
2286
|
+
definition_id: def:v1:9f5df737594466dd4ae7c39120b5efc2b24977637a53e31ec9e53967e0c54691
|
|
2287
|
+
path: lib/rubocop/cop/layout/empty_lines_around_access_modifier.rb
|
|
2288
|
+
line: 105
|
|
2289
|
+
end_line: 114
|
|
2290
|
+
loc: 10
|
|
2291
|
+
state: unreachable
|
|
2292
|
+
confidence: low
|
|
2293
|
+
category: unreachable
|
|
2294
|
+
status: pending
|
|
2295
|
+
review_class: candidate
|
|
2296
|
+
- corpus: rubocop_1_75_0
|
|
2297
|
+
id: RuboCop::Cop::Layout::EmptyLinesAroundAccessModifier#inside_block?
|
|
2298
|
+
definition_id: def:v1:c1bc1f090e7abe77a2256ade07273976ae3a87736d9ba32cf2254e1228be4381
|
|
2299
|
+
path: lib/rubocop/cop/layout/empty_lines_around_access_modifier.rb
|
|
2300
|
+
line: 226
|
|
2301
|
+
end_line: 228
|
|
2302
|
+
loc: 3
|
|
2303
|
+
state: unreachable
|
|
2304
|
+
confidence: low
|
|
2305
|
+
category: unreachable
|
|
2306
|
+
status: pending
|
|
2307
|
+
review_class: candidate
|
|
2308
|
+
- corpus: rubocop_1_75_0
|
|
2309
|
+
id: RuboCop::Cop::Layout::EmptyLinesAroundAccessModifier#message_for_around_style
|
|
2310
|
+
definition_id: def:v1:27cbd142df2ba75bc23aa2f11854e2211e6fa5eb76be1b883e65787a6d158b14
|
|
2311
|
+
path: lib/rubocop/cop/layout/empty_lines_around_access_modifier.rb
|
|
2312
|
+
line: 192
|
|
2313
|
+
end_line: 200
|
|
2314
|
+
loc: 9
|
|
2315
|
+
state: unreachable
|
|
2316
|
+
confidence: low
|
|
2317
|
+
category: unreachable
|
|
2318
|
+
status: pending
|
|
2319
|
+
review_class: candidate
|
|
2320
|
+
- corpus: rubocop_1_75_0
|
|
2321
|
+
id: RuboCop::Cop::Layout::EmptyLinesAroundAccessModifier#message_for_only_before_style
|
|
2322
|
+
definition_id: def:v1:b849b691aefe05db054f265c04ee00f586c141350da3efc4f71c636695254ecf
|
|
2323
|
+
path: lib/rubocop/cop/layout/empty_lines_around_access_modifier.rb
|
|
2324
|
+
line: 202
|
|
2325
|
+
end_line: 210
|
|
2326
|
+
loc: 9
|
|
2327
|
+
state: unreachable
|
|
2328
|
+
confidence: low
|
|
2329
|
+
category: unreachable
|
|
2330
|
+
status: pending
|
|
2331
|
+
review_class: candidate
|
|
2332
|
+
- corpus: rubocop_1_75_0
|
|
2333
|
+
id: RuboCop::Cop::Layout::EmptyLinesAroundAccessModifier#next_empty_line_range
|
|
2334
|
+
definition_id: def:v1:717f07aefb0ea6c442fd8d8d56f58aea996b709e1b8e7fec1c52f745bf0a7947
|
|
2335
|
+
path: lib/rubocop/cop/layout/empty_lines_around_access_modifier.rb
|
|
2336
|
+
line: 179
|
|
2337
|
+
end_line: 181
|
|
2338
|
+
loc: 3
|
|
2339
|
+
state: unreachable
|
|
2340
|
+
confidence: low
|
|
2341
|
+
category: unreachable
|
|
2342
|
+
status: pending
|
|
2343
|
+
review_class: candidate
|
|
2344
|
+
- corpus: rubocop_1_75_0
|
|
2345
|
+
id: RuboCop::Cop::Layout::EmptyLinesAroundAccessModifier#no_empty_lines_around_block_body?
|
|
2346
|
+
definition_id: def:v1:5e7cf1d52fdb442698ebb274e2af2bec23cc5a3e48e61e46878a9aca4baf0f6e
|
|
2347
|
+
path: lib/rubocop/cop/layout/empty_lines_around_access_modifier.rb
|
|
2348
|
+
line: 230
|
|
2349
|
+
end_line: 233
|
|
2350
|
+
loc: 4
|
|
2351
|
+
state: unreachable
|
|
2352
|
+
confidence: low
|
|
2353
|
+
category: unreachable
|
|
2354
|
+
status: pending
|
|
2355
|
+
review_class: candidate
|
|
2356
|
+
- corpus: rubocop_1_75_0
|
|
2357
|
+
id: RuboCop::Cop::Layout::EmptyLinesAroundAccessModifier#previous_line_empty?
|
|
2358
|
+
definition_id: def:v1:71bec91dedcfd85b4f6f94cb4ade81feac83a1d48c4f135020699dd69a324144
|
|
2359
|
+
path: lib/rubocop/cop/layout/empty_lines_around_access_modifier.rb
|
|
2360
|
+
line: 144
|
|
2361
|
+
end_line: 149
|
|
2362
|
+
loc: 6
|
|
2363
|
+
state: unreachable
|
|
2364
|
+
confidence: low
|
|
2365
|
+
category: unreachable
|
|
2366
|
+
status: pending
|
|
2367
|
+
review_class: candidate
|
|
2368
|
+
- corpus: rubocop_1_75_0
|
|
2369
|
+
id: RuboCop::Cop::Layout::EmptyLinesAroundAccessModifier#previous_line_ignoring_comments
|
|
2370
|
+
definition_id: def:v1:5faedffd3f0f14d417bc87b37591d583fbc0e97815097c4826261048b2eecead
|
|
2371
|
+
path: lib/rubocop/cop/layout/empty_lines_around_access_modifier.rb
|
|
2372
|
+
line: 140
|
|
2373
|
+
end_line: 142
|
|
2374
|
+
loc: 3
|
|
2375
|
+
state: unreachable
|
|
2376
|
+
confidence: low
|
|
2377
|
+
category: unreachable
|
|
2378
|
+
status: pending
|
|
2379
|
+
review_class: candidate
|
|
2380
|
+
- corpus: rubocop_1_75_0
|
|
2381
|
+
id: RuboCop::Cop::Layout::EmptyLinesAroundAccessModifier#should_insert_line_after?
|
|
2382
|
+
definition_id: def:v1:a9cf4247d506247e301e31f19e852046e8a8c69705fb7a5ff34ac488d494cf77
|
|
2383
|
+
path: lib/rubocop/cop/layout/empty_lines_around_access_modifier.rb
|
|
2384
|
+
line: 220
|
|
2385
|
+
end_line: 224
|
|
2386
|
+
loc: 5
|
|
2387
|
+
state: unreachable
|
|
2388
|
+
confidence: low
|
|
2389
|
+
category: unreachable
|
|
2390
|
+
status: pending
|
|
2391
|
+
review_class: candidate
|
|
2392
|
+
- corpus: rubocop_1_75_0
|
|
2393
|
+
id: RuboCop::Cop::Layout::EmptyLinesAroundAccessModifier#should_insert_line_before?
|
|
2394
|
+
definition_id: def:v1:9f26f9f0699ec48fb2332376a9dd85734338ece4e8ac6564709da0c76630ff82
|
|
2395
|
+
path: lib/rubocop/cop/layout/empty_lines_around_access_modifier.rb
|
|
2396
|
+
line: 212
|
|
2397
|
+
end_line: 218
|
|
2398
|
+
loc: 7
|
|
2399
|
+
state: unreachable
|
|
2400
|
+
confidence: low
|
|
2401
|
+
category: unreachable
|
|
2402
|
+
status: pending
|
|
2403
|
+
review_class: candidate
|
|
2404
|
+
- corpus: rubocop_1_75_0
|
|
2405
|
+
id: RuboCop::Cop::Layout::EmptyLinesAroundArguments#empty_lines
|
|
2406
|
+
definition_id: def:v1:87b90e78d68ff10ec36491f544efff26aeb592dc673b46e66fbc2545366b565f
|
|
2407
|
+
path: lib/rubocop/cop/layout/empty_lines_around_arguments.rb
|
|
2408
|
+
line: 65
|
|
2409
|
+
end_line: 69
|
|
2410
|
+
loc: 5
|
|
2411
|
+
state: unreachable
|
|
2412
|
+
confidence: low
|
|
2413
|
+
category: unreachable
|
|
2414
|
+
status: pending
|
|
2415
|
+
review_class: candidate
|
|
2416
|
+
- corpus: rubocop_1_75_0
|
|
2417
|
+
id: RuboCop::Cop::Layout::EmptyLinesAroundArguments#extra_lines
|
|
2418
|
+
definition_id: def:v1:155028138c2f1f3aec3773e946b5a8325f40373f76c3fcbda8203baac91d2f91
|
|
2419
|
+
path: lib/rubocop/cop/layout/empty_lines_around_arguments.rb
|
|
2420
|
+
line: 71
|
|
2421
|
+
end_line: 76
|
|
2422
|
+
loc: 6
|
|
2423
|
+
state: unreachable
|
|
2424
|
+
confidence: low
|
|
2425
|
+
category: unreachable
|
|
2426
|
+
status: pending
|
|
2427
|
+
review_class: candidate
|
|
2428
|
+
- corpus: rubocop_1_75_0
|
|
2429
|
+
id: RuboCop::Cop::Layout::EmptyLinesAroundArguments#inner_lines
|
|
2430
|
+
definition_id: def:v1:aeb83261580b20cba07a4f572d19d50e4e7bae59ec9d6cf0752c7b9835ab99a9
|
|
2431
|
+
path: lib/rubocop/cop/layout/empty_lines_around_arguments.rb
|
|
2432
|
+
line: 93
|
|
2433
|
+
end_line: 95
|
|
2434
|
+
loc: 3
|
|
2435
|
+
state: unreachable
|
|
2436
|
+
confidence: low
|
|
2437
|
+
category: unreachable
|
|
2438
|
+
status: pending
|
|
2439
|
+
review_class: candidate
|
|
2440
|
+
- corpus: rubocop_1_75_0
|
|
2441
|
+
id: RuboCop::Cop::Layout::EmptyLinesAroundArguments#line_numbers
|
|
2442
|
+
definition_id: def:v1:e6207b93558f8c70827c18b914e9f04bbf56faa3d31df679259fe351cd0873ae
|
|
2443
|
+
path: lib/rubocop/cop/layout/empty_lines_around_arguments.rb
|
|
2444
|
+
line: 84
|
|
2445
|
+
end_line: 91
|
|
2446
|
+
loc: 8
|
|
2447
|
+
state: unreachable
|
|
2448
|
+
confidence: low
|
|
2449
|
+
category: unreachable
|
|
2450
|
+
status: pending
|
|
2451
|
+
review_class: candidate
|
|
2452
|
+
- corpus: rubocop_1_75_0
|
|
2453
|
+
id: RuboCop::Cop::Layout::EmptyLinesAroundArguments#outer_lines
|
|
2454
|
+
definition_id: def:v1:d46c264a16a9a3268799ab091699f62bf4043db83704da60b401f4e467922763
|
|
2455
|
+
path: lib/rubocop/cop/layout/empty_lines_around_arguments.rb
|
|
2456
|
+
line: 97
|
|
2457
|
+
end_line: 99
|
|
2458
|
+
loc: 3
|
|
2459
|
+
state: unreachable
|
|
2460
|
+
confidence: low
|
|
2461
|
+
category: unreachable
|
|
2462
|
+
status: pending
|
|
2463
|
+
review_class: candidate
|
|
2464
|
+
- corpus: rubocop_1_75_0
|
|
2465
|
+
id: RuboCop::Cop::Layout::EmptyLinesAroundArguments#processed_lines
|
|
2466
|
+
definition_id: def:v1:6ccc0c0e695b132e5036a1332d4680597c15b093729a8e9bdb45f3325ddd1ef5
|
|
2467
|
+
path: lib/rubocop/cop/layout/empty_lines_around_arguments.rb
|
|
2468
|
+
line: 78
|
|
2469
|
+
end_line: 82
|
|
2470
|
+
loc: 5
|
|
2471
|
+
state: unreachable
|
|
2472
|
+
confidence: low
|
|
2473
|
+
category: unreachable
|
|
2474
|
+
status: pending
|
|
2475
|
+
review_class: candidate
|
|
2476
|
+
- corpus: rubocop_1_75_0
|
|
2477
|
+
id: RuboCop::Cop::Layout::EmptyLinesAroundArguments#receiver_and_method_call_on_different_lines?
|
|
2478
|
+
definition_id: def:v1:0b6a344d123efc30ef15e7ca7398cb6c03f5a38849c015e0115212a2b76cc769
|
|
2479
|
+
path: lib/rubocop/cop/layout/empty_lines_around_arguments.rb
|
|
2480
|
+
line: 61
|
|
2481
|
+
end_line: 63
|
|
2482
|
+
loc: 3
|
|
2483
|
+
state: unreachable
|
|
2484
|
+
confidence: low
|
|
2485
|
+
category: unreachable
|
|
2486
|
+
status: pending
|
|
2487
|
+
review_class: candidate
|
|
2488
|
+
- corpus: rubocop_1_75_0
|
|
2489
|
+
id: RuboCop::Cop::Layout::EmptyLinesAroundAttributeAccessor#allow_alias?
|
|
2490
|
+
definition_id: def:v1:e5a21d4cdc9c8a006d41d1be20e7d67f3acbb4793ba681b3fb17916471cc311a
|
|
2491
|
+
path: lib/rubocop/cop/layout/empty_lines_around_attribute_accessor.rb
|
|
2492
|
+
line: 123
|
|
2493
|
+
end_line: 125
|
|
2494
|
+
loc: 3
|
|
2495
|
+
state: unreachable
|
|
2496
|
+
confidence: low
|
|
2497
|
+
category: unreachable
|
|
2498
|
+
status: pending
|
|
2499
|
+
review_class: candidate
|
|
2500
|
+
- corpus: rubocop_1_75_0
|
|
2501
|
+
id: RuboCop::Cop::Layout::EmptyLinesAroundAttributeAccessor#allow_alias_syntax?
|
|
2502
|
+
definition_id: def:v1:6f00eff8fd18da7b2cbbc9a7109bbf0242f62a81e03aa1a6bf90cfd98c4c8aaa
|
|
2503
|
+
path: lib/rubocop/cop/layout/empty_lines_around_attribute_accessor.rb
|
|
2504
|
+
line: 133
|
|
2505
|
+
end_line: 135
|
|
2506
|
+
loc: 3
|
|
2507
|
+
state: unreachable
|
|
2508
|
+
confidence: low
|
|
2509
|
+
category: unreachable
|
|
2510
|
+
status: pending
|
|
2511
|
+
review_class: candidate
|
|
2512
|
+
- corpus: rubocop_1_75_0
|
|
2513
|
+
id: RuboCop::Cop::Layout::EmptyLinesAroundAttributeAccessor#attribute_or_allowed_method?
|
|
2514
|
+
definition_id: def:v1:28ba95786f189aec79e6b83e64b40327607fbf1917b400ce1532d4dad4621f87
|
|
2515
|
+
path: lib/rubocop/cop/layout/empty_lines_around_attribute_accessor.rb
|
|
2516
|
+
line: 127
|
|
2517
|
+
end_line: 131
|
|
2518
|
+
loc: 5
|
|
2519
|
+
state: unreachable
|
|
2520
|
+
confidence: low
|
|
2521
|
+
category: unreachable
|
|
2522
|
+
status: pending
|
|
2523
|
+
review_class: candidate
|
|
2524
|
+
- corpus: rubocop_1_75_0
|
|
2525
|
+
id: RuboCop::Cop::Layout::EmptyLinesAroundAttributeAccessor#next_line_empty_or_enable_directive_comment?
|
|
2526
|
+
definition_id: def:v1:9293fc67888b7fbb77d38c99b3987274fd464d344827bcecd21f5dca7d62b69e
|
|
2527
|
+
path: lib/rubocop/cop/layout/empty_lines_around_attribute_accessor.rb
|
|
2528
|
+
line: 94
|
|
2529
|
+
end_line: 99
|
|
2530
|
+
loc: 6
|
|
2531
|
+
state: unreachable
|
|
2532
|
+
confidence: low
|
|
2533
|
+
category: unreachable
|
|
2534
|
+
status: pending
|
|
2535
|
+
review_class: candidate
|
|
2536
|
+
- corpus: rubocop_1_75_0
|
|
2537
|
+
id: RuboCop::Cop::Layout::EmptyLinesAroundAttributeAccessor#next_line_enable_directive_comment?
|
|
2538
|
+
definition_id: def:v1:ebd267b72bc93e6f36b5c80360f2d02f61e6ef45e369428e6a52337053e03edc
|
|
2539
|
+
path: lib/rubocop/cop/layout/empty_lines_around_attribute_accessor.rb
|
|
2540
|
+
line: 101
|
|
2541
|
+
end_line: 105
|
|
2542
|
+
loc: 5
|
|
2543
|
+
state: unreachable
|
|
2544
|
+
confidence: low
|
|
2545
|
+
category: unreachable
|
|
2546
|
+
status: pending
|
|
2547
|
+
review_class: candidate
|
|
2548
|
+
- corpus: rubocop_1_75_0
|
|
2549
|
+
id: RuboCop::Cop::Layout::EmptyLinesAroundAttributeAccessor#next_line_node
|
|
2550
|
+
definition_id: def:v1:0969276ec67a42b4977fc0bba3140e3776b9359c7ca3a44e3952e3110bf03b21
|
|
2551
|
+
path: lib/rubocop/cop/layout/empty_lines_around_attribute_accessor.rb
|
|
2552
|
+
line: 117
|
|
2553
|
+
end_line: 121
|
|
2554
|
+
loc: 5
|
|
2555
|
+
state: unreachable
|
|
2556
|
+
confidence: low
|
|
2557
|
+
category: unreachable
|
|
2558
|
+
status: pending
|
|
2559
|
+
review_class: candidate
|
|
2560
|
+
- corpus: rubocop_1_75_0
|
|
2561
|
+
id: RuboCop::Cop::Layout::EmptyLinesAroundAttributeAccessor#require_empty_line?
|
|
2562
|
+
definition_id: def:v1:6ab8111d5298c306e074865b3f92624b2aaf7e45bdfc7aedd3578f493396c5ef
|
|
2563
|
+
path: lib/rubocop/cop/layout/empty_lines_around_attribute_accessor.rb
|
|
2564
|
+
line: 111
|
|
2565
|
+
end_line: 115
|
|
2566
|
+
loc: 5
|
|
2567
|
+
state: unreachable
|
|
2568
|
+
confidence: low
|
|
2569
|
+
category: unreachable
|
|
2570
|
+
status: pending
|
|
2571
|
+
review_class: candidate
|
|
2572
|
+
- corpus: rubocop_1_75_0
|
|
2573
|
+
id: RuboCop::Cop::Layout::EmptyLinesAroundExceptionHandlingKeywords#keyword_locations
|
|
2574
|
+
definition_id: def:v1:5292960b2495c6f4954e48ddb00ab00112a3da43cb850457eba9434bd07ea7b9
|
|
2575
|
+
path: lib/rubocop/cop/layout/empty_lines_around_exception_handling_keywords.rb
|
|
2576
|
+
line: 112
|
|
2577
|
+
end_line: 123
|
|
2578
|
+
loc: 12
|
|
2579
|
+
state: unreachable
|
|
2580
|
+
confidence: low
|
|
2581
|
+
category: unreachable
|
|
2582
|
+
status: pending
|
|
2583
|
+
review_class: candidate
|
|
2584
|
+
- corpus: rubocop_1_75_0
|
|
2585
|
+
id: RuboCop::Cop::Layout::EmptyLinesAroundExceptionHandlingKeywords#keyword_locations_in_ensure
|
|
2586
|
+
definition_id: def:v1:4d808e9537fcbf8354814a69f5b76870cf6b8a9ae2c653803c6bc9e422935ea3
|
|
2587
|
+
path: lib/rubocop/cop/layout/empty_lines_around_exception_handling_keywords.rb
|
|
2588
|
+
line: 129
|
|
2589
|
+
end_line: 135
|
|
2590
|
+
loc: 7
|
|
2591
|
+
state: unreachable
|
|
2592
|
+
confidence: low
|
|
2593
|
+
category: unreachable
|
|
2594
|
+
status: pending
|
|
2595
|
+
review_class: candidate
|
|
2596
|
+
- corpus: rubocop_1_75_0
|
|
2597
|
+
id: RuboCop::Cop::Layout::EmptyLinesAroundExceptionHandlingKeywords#keyword_locations_in_rescue
|
|
2598
|
+
definition_id: def:v1:58ff313b79b8a097a0e09d2788755b77ae18ad396c0f1ff93c373c8b0f0953df
|
|
2599
|
+
path: lib/rubocop/cop/layout/empty_lines_around_exception_handling_keywords.rb
|
|
2600
|
+
line: 125
|
|
2601
|
+
end_line: 127
|
|
2602
|
+
loc: 3
|
|
2603
|
+
state: unreachable
|
|
2604
|
+
confidence: low
|
|
2605
|
+
category: unreachable
|
|
2606
|
+
status: pending
|
|
2607
|
+
review_class: candidate
|
|
2608
|
+
- corpus: rubocop_1_75_0
|
|
2609
|
+
id: RuboCop::Cop::Layout::EmptyLinesAroundExceptionHandlingKeywords#last_body_and_end_on_same_line?
|
|
2610
|
+
definition_id: def:v1:51ad9aaaf16afac78805c8fc1e850cdb41304c9bd38380fccb060c3e85b2d56e
|
|
2611
|
+
path: lib/rubocop/cop/layout/empty_lines_around_exception_handling_keywords.rb
|
|
2612
|
+
line: 95
|
|
2613
|
+
end_line: 102
|
|
2614
|
+
loc: 8
|
|
2615
|
+
state: unreachable
|
|
2616
|
+
confidence: low
|
|
2617
|
+
category: unreachable
|
|
2618
|
+
status: pending
|
|
2619
|
+
review_class: candidate
|
|
2620
|
+
- corpus: rubocop_1_75_0
|
|
2621
|
+
id: RuboCop::Cop::Layout::EmptyLinesAroundMethodBody#offending_endless_method?
|
|
2622
|
+
definition_id: def:v1:5196f108eb02bf05e3752c5d63b70139c97d8e3a609b46bec1f95f963103f3d5
|
|
2623
|
+
path: lib/rubocop/cop/layout/empty_lines_around_method_body.rb
|
|
2624
|
+
line: 47
|
|
2625
|
+
end_line: 50
|
|
2626
|
+
loc: 4
|
|
2627
|
+
state: unreachable
|
|
2628
|
+
confidence: low
|
|
2629
|
+
category: unreachable
|
|
2630
|
+
status: pending
|
|
2631
|
+
review_class: candidate
|
|
2632
|
+
- corpus: rubocop_1_75_0
|
|
2633
|
+
id: RuboCop::Cop::Layout::EmptyLinesAroundMethodBody#register_offense_for_endless_method
|
|
2634
|
+
definition_id: def:v1:8f93087fd7001bc61834866e564bd182ca5ba2d3c594fa10c2f37583305aadcc
|
|
2635
|
+
path: lib/rubocop/cop/layout/empty_lines_around_method_body.rb
|
|
2636
|
+
line: 52
|
|
2637
|
+
end_line: 60
|
|
2638
|
+
loc: 9
|
|
2639
|
+
state: unreachable
|
|
2640
|
+
confidence: low
|
|
2641
|
+
category: unreachable
|
|
2642
|
+
status: pending
|
|
2643
|
+
review_class: candidate
|
|
2644
|
+
- corpus: rubocop_1_75_0
|
|
2645
|
+
id: RuboCop::Cop::Layout::EndAlignment#alignment_node_for_variable_style
|
|
2646
|
+
definition_id: def:v1:0d0b55b0ed8aa828f7aeb97569003b09b064693c5762ccfc6a3b0fb481cac98b
|
|
2647
|
+
path: lib/rubocop/cop/layout/end_alignment.rb
|
|
2648
|
+
line: 184
|
|
2649
|
+
end_line: 200
|
|
2650
|
+
loc: 17
|
|
2651
|
+
state: unreachable
|
|
2652
|
+
confidence: low
|
|
2653
|
+
category: unreachable
|
|
2654
|
+
status: pending
|
|
2655
|
+
review_class: candidate
|
|
2656
|
+
- corpus: rubocop_1_75_0
|
|
2657
|
+
id: RuboCop::Cop::Layout::EndAlignment#asgn_variable_align_with
|
|
2658
|
+
definition_id: def:v1:a24c609f3c36a0ec0cdd9efd17774d6df3ef7822391657f314fe1b3e0aa14435
|
|
2659
|
+
path: lib/rubocop/cop/layout/end_alignment.rb
|
|
2660
|
+
line: 148
|
|
2661
|
+
end_line: 156
|
|
2662
|
+
loc: 9
|
|
2663
|
+
state: unreachable
|
|
2664
|
+
confidence: low
|
|
2665
|
+
category: unreachable
|
|
2666
|
+
status: pending
|
|
2667
|
+
review_class: candidate
|
|
2668
|
+
- corpus: rubocop_1_75_0
|
|
2669
|
+
id: RuboCop::Cop::Layout::EndAlignment#assignment_or_operator_method
|
|
2670
|
+
definition_id: def:v1:1bd53662aa9cc4620a2b68fa2bd048282f586f9e747ec428284686e4ba25f6d0
|
|
2671
|
+
path: lib/rubocop/cop/layout/end_alignment.rb
|
|
2672
|
+
line: 202
|
|
2673
|
+
end_line: 206
|
|
2674
|
+
loc: 5
|
|
2675
|
+
state: unreachable
|
|
2676
|
+
confidence: low
|
|
2677
|
+
category: unreachable
|
|
2678
|
+
status: pending
|
|
2679
|
+
review_class: candidate
|
|
2680
|
+
- corpus: rubocop_1_75_0
|
|
2681
|
+
id: RuboCop::Cop::Layout::EndAlignment#check_asgn_alignment
|
|
2682
|
+
definition_id: def:v1:0bc326884e5611f4277dc65eaa17b82e2e518b9001670c062d3e1899af14a035
|
|
2683
|
+
path: lib/rubocop/cop/layout/end_alignment.rb
|
|
2684
|
+
line: 137
|
|
2685
|
+
end_line: 146
|
|
2686
|
+
loc: 10
|
|
2687
|
+
state: unreachable
|
|
2688
|
+
confidence: low
|
|
2689
|
+
category: unreachable
|
|
2690
|
+
status: pending
|
|
2691
|
+
review_class: candidate
|
|
2692
|
+
- corpus: rubocop_1_75_0
|
|
2693
|
+
id: RuboCop::Cop::Layout::EndAlignment#check_other_alignment
|
|
2694
|
+
definition_id: def:v1:3f0327d56b592a5b8863439122f2f1b316b46d76f454ef4963555e7419ba5797
|
|
2695
|
+
path: lib/rubocop/cop/layout/end_alignment.rb
|
|
2696
|
+
line: 158
|
|
2697
|
+
end_line: 165
|
|
2698
|
+
loc: 8
|
|
2699
|
+
state: unreachable
|
|
2700
|
+
confidence: low
|
|
2701
|
+
category: unreachable
|
|
2702
|
+
status: pending
|
|
2703
|
+
review_class: candidate
|
|
2704
|
+
- corpus: rubocop_1_75_0
|
|
2705
|
+
id: RuboCop::Cop::Layout::ExtraSpacing#align_column
|
|
2706
|
+
definition_id: def:v1:30bc89a831b5c44c4ba176f020560a45a18cf63e4dbc1399d127e871fe71a64f
|
|
2707
|
+
path: lib/rubocop/cop/layout/extra_spacing.rb
|
|
2708
|
+
line: 170
|
|
2709
|
+
end_line: 177
|
|
2710
|
+
loc: 8
|
|
2711
|
+
state: unreachable
|
|
2712
|
+
confidence: low
|
|
2713
|
+
category: unreachable
|
|
2714
|
+
status: pending
|
|
2715
|
+
review_class: candidate
|
|
2716
|
+
- corpus: rubocop_1_75_0
|
|
2717
|
+
id: RuboCop::Cop::Layout::ExtraSpacing#align_equal_sign
|
|
2718
|
+
definition_id: def:v1:dd983674d6a40895a4e7d28f2932ac999c6bd023abf726d82f522180c466068d
|
|
2719
|
+
path: lib/rubocop/cop/layout/extra_spacing.rb
|
|
2720
|
+
line: 147
|
|
2721
|
+
end_line: 157
|
|
2722
|
+
loc: 11
|
|
2723
|
+
state: unreachable
|
|
2724
|
+
confidence: low
|
|
2725
|
+
category: unreachable
|
|
2726
|
+
status: pending
|
|
2727
|
+
review_class: candidate
|
|
2728
|
+
- corpus: rubocop_1_75_0
|
|
2729
|
+
id: RuboCop::Cop::Layout::ExtraSpacing#align_equal_signs
|
|
2730
|
+
definition_id: def:v1:4d5732e97586d12f8ee924ed79edca19164081a5b03b7b4ba70b585f94d51ce2
|
|
2731
|
+
path: lib/rubocop/cop/layout/extra_spacing.rb
|
|
2732
|
+
line: 137
|
|
2733
|
+
end_line: 145
|
|
2734
|
+
loc: 9
|
|
2735
|
+
state: unreachable
|
|
2736
|
+
confidence: low
|
|
2737
|
+
category: unreachable
|
|
2738
|
+
status: pending
|
|
2739
|
+
review_class: candidate
|
|
2740
|
+
- corpus: rubocop_1_75_0
|
|
2741
|
+
id: RuboCop::Cop::Layout::ExtraSpacing#aligned_locations
|
|
2742
|
+
definition_id: def:v1:e586b0b80145f9809f73c61f602770d7d69057e26ee15578ee663d326a74c988
|
|
2743
|
+
path: lib/rubocop/cop/layout/extra_spacing.rb
|
|
2744
|
+
line: 52
|
|
2745
|
+
end_line: 60
|
|
2746
|
+
loc: 9
|
|
2747
|
+
state: unreachable
|
|
2748
|
+
confidence: low
|
|
2749
|
+
category: unreachable
|
|
2750
|
+
status: pending
|
|
2751
|
+
review_class: candidate
|
|
2752
|
+
- corpus: rubocop_1_75_0
|
|
2753
|
+
id: RuboCop::Cop::Layout::ExtraSpacing#aligned_tok?
|
|
2754
|
+
definition_id: def:v1:60203012c9de355ddc30c9e48ca607e16f151c7d6b90e072007c1870c1e38e0d
|
|
2755
|
+
path: lib/rubocop/cop/layout/extra_spacing.rb
|
|
2756
|
+
line: 103
|
|
2757
|
+
end_line: 109
|
|
2758
|
+
loc: 7
|
|
2759
|
+
state: unreachable
|
|
2760
|
+
confidence: low
|
|
2761
|
+
category: unreachable
|
|
2762
|
+
status: pending
|
|
2763
|
+
review_class: candidate
|
|
2764
|
+
- corpus: rubocop_1_75_0
|
|
2765
|
+
id: RuboCop::Cop::Layout::ExtraSpacing#all_relevant_assignment_lines
|
|
2766
|
+
definition_id: def:v1:0e2df34b143e802a8459edd0adfda75ca19ea6d6ac2a3b4a2cd46e40e594bea3
|
|
2767
|
+
path: lib/rubocop/cop/layout/extra_spacing.rb
|
|
2768
|
+
line: 159
|
|
2769
|
+
end_line: 168
|
|
2770
|
+
loc: 10
|
|
2771
|
+
state: unreachable
|
|
2772
|
+
confidence: low
|
|
2773
|
+
category: unreachable
|
|
2774
|
+
status: pending
|
|
2775
|
+
review_class: candidate
|
|
2776
|
+
- corpus: rubocop_1_75_0
|
|
2777
|
+
id: RuboCop::Cop::Layout::ExtraSpacing#allow_for_trailing_comments?
|
|
2778
|
+
definition_id: def:v1:ab2a04f6bbaf9ae11aedae021daab3e341e5ce9cdb5e4de66914dcdfe31cb9c3
|
|
2779
|
+
path: lib/rubocop/cop/layout/extra_spacing.rb
|
|
2780
|
+
line: 179
|
|
2781
|
+
end_line: 181
|
|
2782
|
+
loc: 3
|
|
2783
|
+
state: unreachable
|
|
2784
|
+
confidence: low
|
|
2785
|
+
category: unreachable
|
|
2786
|
+
status: pending
|
|
2787
|
+
review_class: candidate
|
|
2788
|
+
- corpus: rubocop_1_75_0
|
|
2789
|
+
id: RuboCop::Cop::Layout::ExtraSpacing#check_assignment
|
|
2790
|
+
definition_id: def:v1:1d3de2c6d6651fc98d7cd0fa2c21312ef2b42d56057c69dff97fcf0a1cc212a5
|
|
2791
|
+
path: lib/rubocop/cop/layout/extra_spacing.rb
|
|
2792
|
+
line: 72
|
|
2793
|
+
end_line: 79
|
|
2794
|
+
loc: 8
|
|
2795
|
+
state: unreachable
|
|
2796
|
+
confidence: low
|
|
2797
|
+
category: unreachable
|
|
2798
|
+
status: pending
|
|
2799
|
+
review_class: candidate
|
|
2800
|
+
- corpus: rubocop_1_75_0
|
|
2801
|
+
id: RuboCop::Cop::Layout::ExtraSpacing#check_other
|
|
2802
|
+
definition_id: def:v1:05760806075f69e2de8b18a24f99deb12d29abd04e5aeb94939aeb8551307ca2
|
|
2803
|
+
path: lib/rubocop/cop/layout/extra_spacing.rb
|
|
2804
|
+
line: 81
|
|
2805
|
+
end_line: 89
|
|
2806
|
+
loc: 9
|
|
2807
|
+
state: unreachable
|
|
2808
|
+
confidence: low
|
|
2809
|
+
category: unreachable
|
|
2810
|
+
status: pending
|
|
2811
|
+
review_class: candidate
|
|
2812
|
+
- corpus: rubocop_1_75_0
|
|
2813
|
+
id: RuboCop::Cop::Layout::ExtraSpacing#check_tokens
|
|
2814
|
+
definition_id: def:v1:046349d47297a883bd1e9cc66a187fc8a8b3f6df4a3a9b09799858580bc6b3f7
|
|
2815
|
+
path: lib/rubocop/cop/layout/extra_spacing.rb
|
|
2816
|
+
line: 62
|
|
2817
|
+
end_line: 70
|
|
2818
|
+
loc: 9
|
|
2819
|
+
state: unreachable
|
|
2820
|
+
confidence: low
|
|
2821
|
+
category: unreachable
|
|
2822
|
+
status: pending
|
|
2823
|
+
review_class: candidate
|
|
2824
|
+
- corpus: rubocop_1_75_0
|
|
2825
|
+
id: RuboCop::Cop::Layout::ExtraSpacing#extra_space_range
|
|
2826
|
+
definition_id: def:v1:6d7b436c50a229106110d1e66c8c9ce0dfde023af6828ce0136b2000733e78f0
|
|
2827
|
+
path: lib/rubocop/cop/layout/extra_spacing.rb
|
|
2828
|
+
line: 91
|
|
2829
|
+
end_line: 101
|
|
2830
|
+
loc: 11
|
|
2831
|
+
state: unreachable
|
|
2832
|
+
confidence: low
|
|
2833
|
+
category: unreachable
|
|
2834
|
+
status: pending
|
|
2835
|
+
review_class: candidate
|
|
2836
|
+
- corpus: rubocop_1_75_0
|
|
2837
|
+
id: RuboCop::Cop::Layout::ExtraSpacing#ignored_range?
|
|
2838
|
+
definition_id: def:v1:d6b440f4c5ba1bb410d52654fb1ab551563c70cc88a6ad930608ef116f18ed8e
|
|
2839
|
+
path: lib/rubocop/cop/layout/extra_spacing.rb
|
|
2840
|
+
line: 111
|
|
2841
|
+
end_line: 113
|
|
2842
|
+
loc: 3
|
|
2843
|
+
state: unreachable
|
|
2844
|
+
confidence: low
|
|
2845
|
+
category: unreachable
|
|
2846
|
+
status: pending
|
|
2847
|
+
review_class: candidate
|
|
2848
|
+
- corpus: rubocop_1_75_0
|
|
2849
|
+
id: RuboCop::Cop::Layout::FirstArgumentIndentation#bare_operator?
|
|
2850
|
+
definition_id: def:v1:682f0031504997f9dc42352a007be24af3d9ad2cb7dd15a565dc69cca04f4869
|
|
2851
|
+
path: lib/rubocop/cop/layout/first_argument_indentation.rb
|
|
2852
|
+
line: 178
|
|
2853
|
+
end_line: 180
|
|
2854
|
+
loc: 3
|
|
2855
|
+
state: unreachable
|
|
2856
|
+
confidence: low
|
|
2857
|
+
category: unreachable
|
|
2858
|
+
status: pending
|
|
2859
|
+
review_class: candidate
|
|
2860
|
+
- corpus: rubocop_1_75_0
|
|
2861
|
+
id: RuboCop::Cop::Layout::FirstArgumentIndentation#base_indentation
|
|
2862
|
+
definition_id: def:v1:df73264cefc2178eb69eb4d90ee5a69f1559d41fbe36f59a68c3204536c9d30b
|
|
2863
|
+
path: lib/rubocop/cop/layout/first_argument_indentation.rb
|
|
2864
|
+
line: 198
|
|
2865
|
+
end_line: 204
|
|
2866
|
+
loc: 7
|
|
2867
|
+
state: unreachable
|
|
2868
|
+
confidence: low
|
|
2869
|
+
category: unreachable
|
|
2870
|
+
status: pending
|
|
2871
|
+
review_class: candidate
|
|
2872
|
+
- corpus: rubocop_1_75_0
|
|
2873
|
+
id: RuboCop::Cop::Layout::FirstArgumentIndentation#base_range
|
|
2874
|
+
definition_id: def:v1:bc23a00ae7ecaaae27760d1502cd0065b36226052376f7d469eefab39364fdba
|
|
2875
|
+
path: lib/rubocop/cop/layout/first_argument_indentation.rb
|
|
2876
|
+
line: 226
|
|
2877
|
+
end_line: 234
|
|
2878
|
+
loc: 9
|
|
2879
|
+
state: unreachable
|
|
2880
|
+
confidence: low
|
|
2881
|
+
category: unreachable
|
|
2882
|
+
status: pending
|
|
2883
|
+
review_class: candidate
|
|
2884
|
+
- corpus: rubocop_1_75_0
|
|
2885
|
+
id: RuboCop::Cop::Layout::FirstArgumentIndentation#column_of
|
|
2886
|
+
definition_id: def:v1:02688b97149f4061fb9077cee6645b9c14bd6cb24b9538ebf96daa8645e462e7
|
|
2887
|
+
path: lib/rubocop/cop/layout/first_argument_indentation.rb
|
|
2888
|
+
line: 238
|
|
2889
|
+
end_line: 245
|
|
2890
|
+
loc: 8
|
|
2891
|
+
state: unreachable
|
|
2892
|
+
confidence: low
|
|
2893
|
+
category: unreachable
|
|
2894
|
+
status: pending
|
|
2895
|
+
review_class: candidate
|
|
2896
|
+
- corpus: rubocop_1_75_0
|
|
2897
|
+
id: RuboCop::Cop::Layout::FirstArgumentIndentation#comment_lines
|
|
2898
|
+
definition_id: def:v1:c468e63ea698f649eee97a0d1d08bb28aa01abbd6b733a1b310814f8d3901f22
|
|
2899
|
+
path: lib/rubocop/cop/layout/first_argument_indentation.rb
|
|
2900
|
+
line: 259
|
|
2901
|
+
end_line: 265
|
|
2902
|
+
loc: 7
|
|
2903
|
+
state: unreachable
|
|
2904
|
+
confidence: low
|
|
2905
|
+
category: unreachable
|
|
2906
|
+
status: pending
|
|
2907
|
+
review_class: candidate
|
|
2908
|
+
- corpus: rubocop_1_75_0
|
|
2909
|
+
id: RuboCop::Cop::Layout::FirstArgumentIndentation#enable_layout_first_method_argument_line_break?
|
|
2910
|
+
definition_id: def:v1:247034d5db875a21f909f41e6e6e571063fcfd5ab1d749f24bafee914f0d9eac
|
|
2911
|
+
path: lib/rubocop/cop/layout/first_argument_indentation.rb
|
|
2912
|
+
line: 276
|
|
2913
|
+
end_line: 278
|
|
2914
|
+
loc: 3
|
|
2915
|
+
state: unreachable
|
|
2916
|
+
confidence: low
|
|
2917
|
+
category: unreachable
|
|
2918
|
+
status: pending
|
|
2919
|
+
review_class: candidate
|
|
2920
|
+
- corpus: rubocop_1_75_0
|
|
2921
|
+
id: RuboCop::Cop::Layout::FirstArgumentIndentation#previous_code_line
|
|
2922
|
+
definition_id: def:v1:2942439d7831bb6594b091ce9ec85f80b10acff810635039d28e5d68679d09f4
|
|
2923
|
+
path: lib/rubocop/cop/layout/first_argument_indentation.rb
|
|
2924
|
+
line: 250
|
|
2925
|
+
end_line: 257
|
|
2926
|
+
loc: 8
|
|
2927
|
+
state: unreachable
|
|
2928
|
+
confidence: low
|
|
2929
|
+
category: unreachable
|
|
2930
|
+
status: pending
|
|
2931
|
+
review_class: candidate
|
|
2932
|
+
- corpus: rubocop_1_75_0
|
|
2933
|
+
id: RuboCop::Cop::Layout::FirstArgumentIndentation#should_check?
|
|
2934
|
+
definition_id: def:v1:95f9a7a66409d9203ab92162a6baaf2522515ca74686d583650ce0dba6187e90
|
|
2935
|
+
path: lib/rubocop/cop/layout/first_argument_indentation.rb
|
|
2936
|
+
line: 170
|
|
2937
|
+
end_line: 172
|
|
2938
|
+
loc: 3
|
|
2939
|
+
state: unreachable
|
|
2940
|
+
confidence: low
|
|
2941
|
+
category: unreachable
|
|
2942
|
+
status: pending
|
|
2943
|
+
review_class: candidate
|
|
2944
|
+
- corpus: rubocop_1_75_0
|
|
2945
|
+
id: RuboCop::Cop::Layout::FirstArgumentIndentation#special_inner_call_indentation?
|
|
2946
|
+
definition_id: def:v1:b3211dcb86dadcc689ab1e13a66668cd6d6a2479d14daf72c809c78830409cef
|
|
2947
|
+
path: lib/rubocop/cop/layout/first_argument_indentation.rb
|
|
2948
|
+
line: 206
|
|
2949
|
+
end_line: 219
|
|
2950
|
+
loc: 14
|
|
2951
|
+
state: unreachable
|
|
2952
|
+
confidence: low
|
|
2953
|
+
category: unreachable
|
|
2954
|
+
status: pending
|
|
2955
|
+
review_class: candidate
|
|
2956
|
+
- corpus: rubocop_1_75_0
|
|
2957
|
+
id: RuboCop::Cop::Layout::FirstArrayElementIndentation#check_right_bracket
|
|
2958
|
+
definition_id: def:v1:5ec0c0b6f671e884578f4324b4176e9e32a952cc2700ef4d524a3f52b5f84209
|
|
2959
|
+
path: lib/rubocop/cop/layout/first_array_element_indentation.rb
|
|
2960
|
+
line: 130
|
|
2961
|
+
end_line: 143
|
|
2962
|
+
loc: 14
|
|
2963
|
+
state: unreachable
|
|
2964
|
+
confidence: low
|
|
2965
|
+
category: unreachable
|
|
2966
|
+
status: pending
|
|
2967
|
+
review_class: candidate
|
|
2968
|
+
- corpus: rubocop_1_75_0
|
|
2969
|
+
id: RuboCop::Cop::Layout::FirstArrayElementIndentation#message_for_right_bracket
|
|
2970
|
+
definition_id: def:v1:459d4ac2c2c3f2a96fbc761b4108b55b4926d1f6bd755bb1f30a4701d9b551b2
|
|
2971
|
+
path: lib/rubocop/cop/layout/first_array_element_indentation.rb
|
|
2972
|
+
line: 167
|
|
2973
|
+
end_line: 180
|
|
2974
|
+
loc: 14
|
|
2975
|
+
state: unreachable
|
|
2976
|
+
confidence: low
|
|
2977
|
+
category: unreachable
|
|
2978
|
+
status: pending
|
|
2979
|
+
review_class: candidate
|
|
2980
|
+
- corpus: rubocop_1_75_0
|
|
2981
|
+
id: RuboCop::Cop::Layout::FirstArrayElementLineBreak#assignment_on_same_line?
|
|
2982
|
+
definition_id: def:v1:5d943b36056e7b5dadc508f81eb9cfab46715e3932235dc9f5495b3295c40d14
|
|
2983
|
+
path: lib/rubocop/cop/layout/first_array_element_line_break.rb
|
|
2984
|
+
line: 57
|
|
2985
|
+
end_line: 60
|
|
2986
|
+
loc: 4
|
|
2987
|
+
state: unreachable
|
|
2988
|
+
confidence: low
|
|
2989
|
+
category: unreachable
|
|
2990
|
+
status: pending
|
|
2991
|
+
review_class: candidate
|
|
2992
|
+
- corpus: rubocop_1_75_0
|
|
2993
|
+
id: RuboCop::Cop::Layout::FirstHashElementIndentation#check_based_on_longest_key
|
|
2994
|
+
definition_id: def:v1:6fd5aafbf263b5cdad567866af27c34d6c009641bbda6667c07c716ebd631cff
|
|
2995
|
+
path: lib/rubocop/cop/layout/first_hash_element_indentation.rb
|
|
2996
|
+
line: 184
|
|
2997
|
+
end_line: 188
|
|
2998
|
+
loc: 5
|
|
2999
|
+
state: unreachable
|
|
3000
|
+
confidence: low
|
|
3001
|
+
category: unreachable
|
|
3002
|
+
status: pending
|
|
3003
|
+
review_class: candidate
|
|
3004
|
+
- corpus: rubocop_1_75_0
|
|
3005
|
+
id: RuboCop::Cop::Layout::FirstHashElementIndentation#message_for_right_brace
|
|
3006
|
+
definition_id: def:v1:ea9569773d9b5a137fde25414ad2c3f38b56616a239aedf5cc3a3e91a537726f
|
|
3007
|
+
path: lib/rubocop/cop/layout/first_hash_element_indentation.rb
|
|
3008
|
+
line: 212
|
|
3009
|
+
end_line: 225
|
|
3010
|
+
loc: 14
|
|
3011
|
+
state: unreachable
|
|
3012
|
+
confidence: low
|
|
3013
|
+
category: unreachable
|
|
3014
|
+
status: pending
|
|
3015
|
+
review_class: candidate
|
|
3016
|
+
- corpus: rubocop_1_75_0
|
|
3017
|
+
id: RuboCop::Cop::Layout::FirstHashElementIndentation#separator_style?
|
|
3018
|
+
definition_id: def:v1:2edc5111bdc0b9b517a1acf2cb7f2f61224cb0b90a9ad2e58a61cb87612de68a
|
|
3019
|
+
path: lib/rubocop/cop/layout/first_hash_element_indentation.rb
|
|
3020
|
+
line: 178
|
|
3021
|
+
end_line: 182
|
|
3022
|
+
loc: 5
|
|
3023
|
+
state: unreachable
|
|
3024
|
+
confidence: low
|
|
3025
|
+
category: unreachable
|
|
3026
|
+
status: pending
|
|
3027
|
+
review_class: candidate
|
|
3028
|
+
- corpus: rubocop_1_75_0
|
|
3029
|
+
id: RuboCop::Cop::Layout::FirstParameterIndentation#base_description
|
|
3030
|
+
definition_id: def:v1:6cba37d96dd0608554594ede037a75239606187f3dd52a7bb2d2a33c4666f7e8
|
|
3031
|
+
path: lib/rubocop/cop/layout/first_parameter_indentation.rb
|
|
3032
|
+
line: 83
|
|
3033
|
+
end_line: 89
|
|
3034
|
+
loc: 7
|
|
3035
|
+
state: unreachable
|
|
3036
|
+
confidence: low
|
|
3037
|
+
category: unreachable
|
|
3038
|
+
status: pending
|
|
3039
|
+
review_class: candidate
|
|
3040
|
+
- corpus: rubocop_1_75_0
|
|
3041
|
+
id: RuboCop::Cop::Layout::HashAlignment#add_offenses
|
|
3042
|
+
definition_id: def:v1:97894ce03ad4db7e4697088cb8cdd440c50047ec6366bf21f2e61f354b81ae62
|
|
3043
|
+
path: lib/rubocop/cop/layout/hash_alignment.rb
|
|
3044
|
+
line: 267
|
|
3045
|
+
end_line: 273
|
|
3046
|
+
loc: 7
|
|
3047
|
+
state: unreachable
|
|
3048
|
+
confidence: low
|
|
3049
|
+
category: unreachable
|
|
3050
|
+
status: pending
|
|
3051
|
+
review_class: candidate
|
|
3052
|
+
- corpus: rubocop_1_75_0
|
|
3053
|
+
id: RuboCop::Cop::Layout::HashAlignment#adjust
|
|
3054
|
+
definition_id: def:v1:36b24a4bcd9ebcd6f0a3f7f3c1344a40a3a3bbcca6a4ff573259dd7f0108adeb
|
|
3055
|
+
path: lib/rubocop/cop/layout/hash_alignment.rb
|
|
3056
|
+
line: 373
|
|
3057
|
+
end_line: 380
|
|
3058
|
+
loc: 8
|
|
3059
|
+
state: unreachable
|
|
3060
|
+
confidence: low
|
|
3061
|
+
category: unreachable
|
|
3062
|
+
status: pending
|
|
3063
|
+
review_class: candidate
|
|
3064
|
+
- corpus: rubocop_1_75_0
|
|
3065
|
+
id: RuboCop::Cop::Layout::HashAlignment#alignment_for
|
|
3066
|
+
definition_id: def:v1:0075f7c15f77738acd2734bc1848ee97f0cd6a63ddb33397d7e7e56433447175
|
|
3067
|
+
path: lib/rubocop/cop/layout/hash_alignment.rb
|
|
3068
|
+
line: 302
|
|
3069
|
+
end_line: 310
|
|
3070
|
+
loc: 9
|
|
3071
|
+
state: unreachable
|
|
3072
|
+
confidence: low
|
|
3073
|
+
category: unreachable
|
|
3074
|
+
status: pending
|
|
3075
|
+
review_class: candidate
|
|
3076
|
+
- corpus: rubocop_1_75_0
|
|
3077
|
+
id: RuboCop::Cop::Layout::HashAlignment#alignment_for_colons
|
|
3078
|
+
definition_id: def:v1:b35c707a0695f2b3364a5f513ab188bd2d5c3da9b514b76ecd6a01ad2f701f28
|
|
3079
|
+
path: lib/rubocop/cop/layout/hash_alignment.rb
|
|
3080
|
+
line: 316
|
|
3081
|
+
end_line: 318
|
|
3082
|
+
loc: 3
|
|
3083
|
+
state: unreachable
|
|
3084
|
+
confidence: low
|
|
3085
|
+
category: unreachable
|
|
3086
|
+
status: pending
|
|
3087
|
+
review_class: candidate
|
|
3088
|
+
- corpus: rubocop_1_75_0
|
|
3089
|
+
id: RuboCop::Cop::Layout::HashAlignment#alignment_for_hash_rockets
|
|
3090
|
+
definition_id: def:v1:be706fa1a97e6fea69df810b49bfae9dcf8a4cc582f5ec9da2ef8b2cd37fc41b
|
|
3091
|
+
path: lib/rubocop/cop/layout/hash_alignment.rb
|
|
3092
|
+
line: 312
|
|
3093
|
+
end_line: 314
|
|
3094
|
+
loc: 3
|
|
3095
|
+
state: unreachable
|
|
3096
|
+
confidence: low
|
|
3097
|
+
category: unreachable
|
|
3098
|
+
status: pending
|
|
3099
|
+
review_class: candidate
|
|
3100
|
+
- corpus: rubocop_1_75_0
|
|
3101
|
+
id: RuboCop::Cop::Layout::HashAlignment#argument_before_hash
|
|
3102
|
+
definition_id: def:v1:e4029ef81f4c5696974209db20cd75280304ea59334713b15cc591b056780af6
|
|
3103
|
+
path: lib/rubocop/cop/layout/hash_alignment.rb
|
|
3104
|
+
line: 235
|
|
3105
|
+
end_line: 237
|
|
3106
|
+
loc: 3
|
|
3107
|
+
state: unreachable
|
|
3108
|
+
confidence: low
|
|
3109
|
+
category: unreachable
|
|
3110
|
+
status: pending
|
|
3111
|
+
review_class: candidate
|
|
3112
|
+
- corpus: rubocop_1_75_0
|
|
3113
|
+
id: RuboCop::Cop::Layout::HashAlignment#check_delta
|
|
3114
|
+
definition_id: def:v1:48393918f95ef9f14c990d44c5fdb64c824b6117f412ea8253fe115070c30633
|
|
3115
|
+
path: lib/rubocop/cop/layout/hash_alignment.rb
|
|
3116
|
+
line: 285
|
|
3117
|
+
end_line: 291
|
|
3118
|
+
loc: 7
|
|
3119
|
+
state: unreachable
|
|
3120
|
+
confidence: low
|
|
3121
|
+
category: unreachable
|
|
3122
|
+
status: pending
|
|
3123
|
+
review_class: candidate
|
|
3124
|
+
- corpus: rubocop_1_75_0
|
|
3125
|
+
id: RuboCop::Cop::Layout::HashAlignment#check_pairs
|
|
3126
|
+
definition_id: def:v1:1452dcfcb4ce94f39d7386f232fd51585e52e251194735df25c2c8f4a3d7bbff
|
|
3127
|
+
path: lib/rubocop/cop/layout/hash_alignment.rb
|
|
3128
|
+
line: 248
|
|
3129
|
+
end_line: 265
|
|
3130
|
+
loc: 18
|
|
3131
|
+
state: unreachable
|
|
3132
|
+
confidence: low
|
|
3133
|
+
category: unreachable
|
|
3134
|
+
status: pending
|
|
3135
|
+
review_class: candidate
|
|
3136
|
+
- corpus: rubocop_1_75_0
|
|
3137
|
+
id: RuboCop::Cop::Layout::HashAlignment#correct_key_value
|
|
3138
|
+
definition_id: def:v1:0f08b9f7974f264613b75051b53060391a3d94d27e52a7a695864cb03027418d
|
|
3139
|
+
path: lib/rubocop/cop/layout/hash_alignment.rb
|
|
3140
|
+
line: 339
|
|
3141
|
+
end_line: 353
|
|
3142
|
+
loc: 15
|
|
3143
|
+
state: unreachable
|
|
3144
|
+
confidence: low
|
|
3145
|
+
category: unreachable
|
|
3146
|
+
status: pending
|
|
3147
|
+
review_class: candidate
|
|
3148
|
+
- corpus: rubocop_1_75_0
|
|
3149
|
+
id: RuboCop::Cop::Layout::HashAlignment#correct_no_value
|
|
3150
|
+
definition_id: def:v1:3bb4dea1e58a5f6a28e433e9437ad55e0bb48f8e92e167bace50f04424d45c2d
|
|
3151
|
+
path: lib/rubocop/cop/layout/hash_alignment.rb
|
|
3152
|
+
line: 335
|
|
3153
|
+
end_line: 337
|
|
3154
|
+
loc: 3
|
|
3155
|
+
state: unreachable
|
|
3156
|
+
confidence: low
|
|
3157
|
+
category: unreachable
|
|
3158
|
+
status: pending
|
|
3159
|
+
review_class: candidate
|
|
3160
|
+
- corpus: rubocop_1_75_0
|
|
3161
|
+
id: RuboCop::Cop::Layout::HashAlignment#correct_node
|
|
3162
|
+
definition_id: def:v1:59ad4664a028c681a9291d421745f57e64565a7319f2aa45461c051e801ec050
|
|
3163
|
+
path: lib/rubocop/cop/layout/hash_alignment.rb
|
|
3164
|
+
line: 320
|
|
3165
|
+
end_line: 333
|
|
3166
|
+
loc: 14
|
|
3167
|
+
state: unreachable
|
|
3168
|
+
confidence: low
|
|
3169
|
+
category: unreachable
|
|
3170
|
+
status: pending
|
|
3171
|
+
review_class: candidate
|
|
3172
|
+
- corpus: rubocop_1_75_0
|
|
3173
|
+
id: RuboCop::Cop::Layout::HashAlignment#double_splat?
|
|
3174
|
+
definition_id: def:v1:78400c9b3986d56f8e860dccab983c9270a96bf23d21259f735895537db2531c
|
|
3175
|
+
path: lib/rubocop/cop/layout/hash_alignment.rb
|
|
3176
|
+
line: 244
|
|
3177
|
+
end_line: 246
|
|
3178
|
+
loc: 3
|
|
3179
|
+
state: unreachable
|
|
3180
|
+
confidence: low
|
|
3181
|
+
category: unreachable
|
|
3182
|
+
status: pending
|
|
3183
|
+
review_class: candidate
|
|
3184
|
+
- corpus: rubocop_1_75_0
|
|
3185
|
+
id: RuboCop::Cop::Layout::HashAlignment#good_alignment?
|
|
3186
|
+
definition_id: def:v1:58f8dbe0f0c29b252aac8fc363a150655eae8bcef9f6dd4401812870aa90270e
|
|
3187
|
+
path: lib/rubocop/cop/layout/hash_alignment.rb
|
|
3188
|
+
line: 382
|
|
3189
|
+
end_line: 384
|
|
3190
|
+
loc: 3
|
|
3191
|
+
state: unreachable
|
|
3192
|
+
confidence: low
|
|
3193
|
+
category: unreachable
|
|
3194
|
+
status: pending
|
|
3195
|
+
review_class: candidate
|
|
3196
|
+
- corpus: rubocop_1_75_0
|
|
3197
|
+
id: RuboCop::Cop::Layout::HashAlignment#ignore_hash_argument?
|
|
3198
|
+
definition_id: def:v1:f36193ce69744545aefe0ce7a95362ef7f2a37da87e2ca59cfda662949319700
|
|
3199
|
+
path: lib/rubocop/cop/layout/hash_alignment.rb
|
|
3200
|
+
line: 293
|
|
3201
|
+
end_line: 300
|
|
3202
|
+
loc: 8
|
|
3203
|
+
state: unreachable
|
|
3204
|
+
confidence: low
|
|
3205
|
+
category: unreachable
|
|
3206
|
+
status: pending
|
|
3207
|
+
review_class: candidate
|
|
3208
|
+
- corpus: rubocop_1_75_0
|
|
3209
|
+
id: RuboCop::Cop::Layout::HashAlignment#new_alignment
|
|
3210
|
+
definition_id: def:v1:8f021eeca053f2ca76229bbdf53d130b1160e176724110516724e7b8bb7c4c03
|
|
3211
|
+
path: lib/rubocop/cop/layout/hash_alignment.rb
|
|
3212
|
+
line: 355
|
|
3213
|
+
end_line: 371
|
|
3214
|
+
loc: 17
|
|
3215
|
+
state: unreachable
|
|
3216
|
+
confidence: low
|
|
3217
|
+
category: unreachable
|
|
3218
|
+
status: pending
|
|
3219
|
+
review_class: candidate
|
|
3220
|
+
- corpus: rubocop_1_75_0
|
|
3221
|
+
id: RuboCop::Cop::Layout::HashAlignment#register_offenses_with_format
|
|
3222
|
+
definition_id: def:v1:0e2ce3ae5c73bd718c1ffc4f988d3b3f10512a0117d2eaf564cfde5bb001b43f
|
|
3223
|
+
path: lib/rubocop/cop/layout/hash_alignment.rb
|
|
3224
|
+
line: 275
|
|
3225
|
+
end_line: 283
|
|
3226
|
+
loc: 9
|
|
3227
|
+
state: unreachable
|
|
3228
|
+
confidence: low
|
|
3229
|
+
category: unreachable
|
|
3230
|
+
status: pending
|
|
3231
|
+
review_class: candidate
|
|
3232
|
+
- corpus: rubocop_1_75_0
|
|
3233
|
+
id: RuboCop::Cop::Layout::HashAlignment#reset!
|
|
3234
|
+
definition_id: def:v1:7c85faf2b1aa756b7b2da6fa89326be8a65a62ea0a941e1daa3ccb023925e643
|
|
3235
|
+
path: lib/rubocop/cop/layout/hash_alignment.rb
|
|
3236
|
+
line: 239
|
|
3237
|
+
end_line: 242
|
|
3238
|
+
loc: 4
|
|
3239
|
+
state: unreachable
|
|
3240
|
+
confidence: low
|
|
3241
|
+
category: unreachable
|
|
3242
|
+
status: pending
|
|
3243
|
+
review_class: candidate
|
|
3244
|
+
- corpus: rubocop_1_75_0
|
|
3245
|
+
id: RuboCop::Cop::Layout::HeredocArgumentClosingParenthesis#add_correct_closing_paren
|
|
3246
|
+
definition_id: def:v1:73667bb868a88a5ef9c05b75d345685dabab51dff40631db5b27e445f77330f6
|
|
3247
|
+
path: lib/rubocop/cop/layout/heredoc_argument_closing_parenthesis.rb
|
|
3248
|
+
line: 185
|
|
3249
|
+
end_line: 187
|
|
3250
|
+
loc: 3
|
|
3251
|
+
state: unreachable
|
|
3252
|
+
confidence: low
|
|
3253
|
+
category: unreachable
|
|
3254
|
+
status: pending
|
|
3255
|
+
review_class: candidate
|
|
3256
|
+
- corpus: rubocop_1_75_0
|
|
3257
|
+
id: RuboCop::Cop::Layout::HeredocArgumentClosingParenthesis#add_correct_external_trailing_comma
|
|
3258
|
+
definition_id: def:v1:33413722322cb4b2c4d22aa4076158d478ef690973021cf51d7d3775f6499ec8
|
|
3259
|
+
path: lib/rubocop/cop/layout/heredoc_argument_closing_parenthesis.rb
|
|
3260
|
+
line: 272
|
|
3261
|
+
end_line: 276
|
|
3262
|
+
loc: 5
|
|
3263
|
+
state: unreachable
|
|
3264
|
+
confidence: low
|
|
3265
|
+
category: unreachable
|
|
3266
|
+
status: pending
|
|
3267
|
+
review_class: candidate
|
|
3268
|
+
- corpus: rubocop_1_75_0
|
|
3269
|
+
id: RuboCop::Cop::Layout::HeredocArgumentClosingParenthesis#end_keyword_before_closing_parenthesis?
|
|
3270
|
+
definition_id: def:v1:644fc88e53b6fef801ba437ae2ebd1bba48c8e6179bd8f98a0aa73fc6245de4d
|
|
3271
|
+
path: lib/rubocop/cop/layout/heredoc_argument_closing_parenthesis.rb
|
|
3272
|
+
line: 163
|
|
3273
|
+
end_line: 167
|
|
3274
|
+
loc: 5
|
|
3275
|
+
state: unreachable
|
|
3276
|
+
confidence: low
|
|
3277
|
+
category: unreachable
|
|
3278
|
+
status: pending
|
|
3279
|
+
review_class: candidate
|
|
3280
|
+
- corpus: rubocop_1_75_0
|
|
3281
|
+
id: RuboCop::Cop::Layout::HeredocArgumentClosingParenthesis#exist_argument_between_heredoc_end_and_closing_parentheses?
|
|
3282
|
+
definition_id: def:v1:5ae380bbe3cc7015da1c3c1ffd1b373e5963a2c5bb8610a9d29049dcbf13572d
|
|
3283
|
+
path: lib/rubocop/cop/layout/heredoc_argument_closing_parenthesis.rb
|
|
3284
|
+
line: 223
|
|
3285
|
+
end_line: 229
|
|
3286
|
+
loc: 7
|
|
3287
|
+
state: unreachable
|
|
3288
|
+
confidence: low
|
|
3289
|
+
category: unreachable
|
|
3290
|
+
status: pending
|
|
3291
|
+
review_class: candidate
|
|
3292
|
+
- corpus: rubocop_1_75_0
|
|
3293
|
+
id: RuboCop::Cop::Layout::HeredocArgumentClosingParenthesis#external_trailing_comma?
|
|
3294
|
+
definition_id: def:v1:cc8eb862ff3650c74828de1aeedf04405da85a1823174e3463e404feefd6e593
|
|
3295
|
+
path: lib/rubocop/cop/layout/heredoc_argument_closing_parenthesis.rb
|
|
3296
|
+
line: 290
|
|
3297
|
+
end_line: 292
|
|
3298
|
+
loc: 3
|
|
3299
|
+
state: unreachable
|
|
3300
|
+
confidence: low
|
|
3301
|
+
category: unreachable
|
|
3302
|
+
status: pending
|
|
3303
|
+
review_class: candidate
|
|
3304
|
+
- corpus: rubocop_1_75_0
|
|
3305
|
+
id: RuboCop::Cop::Layout::HeredocArgumentClosingParenthesis#external_trailing_comma_offset_from_loc_end
|
|
3306
|
+
definition_id: def:v1:4a2f04c1d6d4f4c688aaf599354b276b867cf6d85832c530e397a15bc226b215
|
|
3307
|
+
path: lib/rubocop/cop/layout/heredoc_argument_closing_parenthesis.rb
|
|
3308
|
+
line: 295
|
|
3309
|
+
end_line: 304
|
|
3310
|
+
loc: 10
|
|
3311
|
+
state: unreachable
|
|
3312
|
+
confidence: low
|
|
3313
|
+
category: unreachable
|
|
3314
|
+
status: pending
|
|
3315
|
+
review_class: candidate
|
|
3316
|
+
- corpus: rubocop_1_75_0
|
|
3317
|
+
id: RuboCop::Cop::Layout::HeredocArgumentClosingParenthesis#extract_heredoc
|
|
3318
|
+
definition_id: def:v1:93e7a83a863e64c0491780d28d6bcd5a9bf0c37dcb06a7fbc298c3c63c281fd2
|
|
3319
|
+
path: lib/rubocop/cop/layout/heredoc_argument_closing_parenthesis.rb
|
|
3320
|
+
line: 138
|
|
3321
|
+
end_line: 148
|
|
3322
|
+
loc: 11
|
|
3323
|
+
state: unreachable
|
|
3324
|
+
confidence: low
|
|
3325
|
+
category: unreachable
|
|
3326
|
+
status: pending
|
|
3327
|
+
review_class: candidate
|
|
3328
|
+
- corpus: rubocop_1_75_0
|
|
3329
|
+
id: RuboCop::Cop::Layout::HeredocArgumentClosingParenthesis#extract_heredoc_argument
|
|
3330
|
+
definition_id: def:v1:aa3d0d8416c493d54f6a460a0c0079402060ea6d3f464facf30c581a3765b7b3
|
|
3331
|
+
path: lib/rubocop/cop/layout/heredoc_argument_closing_parenthesis.rb
|
|
3332
|
+
line: 134
|
|
3333
|
+
end_line: 136
|
|
3334
|
+
loc: 3
|
|
3335
|
+
state: unreachable
|
|
3336
|
+
confidence: low
|
|
3337
|
+
category: unreachable
|
|
3338
|
+
status: pending
|
|
3339
|
+
review_class: candidate
|
|
3340
|
+
- corpus: rubocop_1_75_0
|
|
3341
|
+
id: RuboCop::Cop::Layout::HeredocArgumentClosingParenthesis#find_most_bottom_of_heredoc_end
|
|
3342
|
+
definition_id: def:v1:8388d7d1a68bd683909937857ea836375d581d51779fb473c6b1599507079650
|
|
3343
|
+
path: lib/rubocop/cop/layout/heredoc_argument_closing_parenthesis.rb
|
|
3344
|
+
line: 231
|
|
3345
|
+
end_line: 235
|
|
3346
|
+
loc: 5
|
|
3347
|
+
state: unreachable
|
|
3348
|
+
confidence: low
|
|
3349
|
+
category: unreachable
|
|
3350
|
+
status: pending
|
|
3351
|
+
review_class: candidate
|
|
3352
|
+
- corpus: rubocop_1_75_0
|
|
3353
|
+
id: RuboCop::Cop::Layout::HeredocArgumentClosingParenthesis#fix_closing_parenthesis
|
|
3354
|
+
definition_id: def:v1:1f7738b38cb565fd3fab3d3b94debe96b893069aa469cc312a59f072c319dafd
|
|
3355
|
+
path: lib/rubocop/cop/layout/heredoc_argument_closing_parenthesis.rb
|
|
3356
|
+
line: 180
|
|
3357
|
+
end_line: 183
|
|
3358
|
+
loc: 4
|
|
3359
|
+
state: unreachable
|
|
3360
|
+
confidence: low
|
|
3361
|
+
category: unreachable
|
|
3362
|
+
status: pending
|
|
3363
|
+
review_class: candidate
|
|
3364
|
+
- corpus: rubocop_1_75_0
|
|
3365
|
+
id: RuboCop::Cop::Layout::HeredocArgumentClosingParenthesis#fix_external_trailing_comma
|
|
3366
|
+
definition_id: def:v1:379568f5287e9aa974fa7008ee769e6d626276a914803bd5e49dfb63693bb1d0
|
|
3367
|
+
path: lib/rubocop/cop/layout/heredoc_argument_closing_parenthesis.rb
|
|
3368
|
+
line: 267
|
|
3369
|
+
end_line: 270
|
|
3370
|
+
loc: 4
|
|
3371
|
+
state: unreachable
|
|
3372
|
+
confidence: low
|
|
3373
|
+
category: unreachable
|
|
3374
|
+
status: pending
|
|
3375
|
+
review_class: candidate
|
|
3376
|
+
- corpus: rubocop_1_75_0
|
|
3377
|
+
id: RuboCop::Cop::Layout::HeredocArgumentClosingParenthesis#heredoc_node?
|
|
3378
|
+
definition_id: def:v1:ce1bef670fc66920f0bbf7bdcfc107a1a212b4a62ee74623c9d3236dc87f657f
|
|
3379
|
+
path: lib/rubocop/cop/layout/heredoc_argument_closing_parenthesis.rb
|
|
3380
|
+
line: 150
|
|
3381
|
+
end_line: 152
|
|
3382
|
+
loc: 3
|
|
3383
|
+
state: unreachable
|
|
3384
|
+
confidence: low
|
|
3385
|
+
category: unreachable
|
|
3386
|
+
status: pending
|
|
3387
|
+
review_class: candidate
|
|
3388
|
+
- corpus: rubocop_1_75_0
|
|
3389
|
+
id: RuboCop::Cop::Layout::HeredocArgumentClosingParenthesis#incorrect_parenthesis_removal_begin
|
|
3390
|
+
definition_id: def:v1:9c4b2ee0b5c08886a2a81f3438d7d143d4e1158a98cef6f11daa8f39821aca4f
|
|
3391
|
+
path: lib/rubocop/cop/layout/heredoc_argument_closing_parenthesis.rb
|
|
3392
|
+
line: 198
|
|
3393
|
+
end_line: 206
|
|
3394
|
+
loc: 9
|
|
3395
|
+
state: unreachable
|
|
3396
|
+
confidence: low
|
|
3397
|
+
category: unreachable
|
|
3398
|
+
status: pending
|
|
3399
|
+
review_class: candidate
|
|
3400
|
+
- corpus: rubocop_1_75_0
|
|
3401
|
+
id: RuboCop::Cop::Layout::HeredocArgumentClosingParenthesis#incorrect_parenthesis_removal_end
|
|
3402
|
+
definition_id: def:v1:fdffdf43c4c23a274d5e517f0c5b209ac17deb001e9d89c579118c9b990766b3
|
|
3403
|
+
path: lib/rubocop/cop/layout/heredoc_argument_closing_parenthesis.rb
|
|
3404
|
+
line: 214
|
|
3405
|
+
end_line: 221
|
|
3406
|
+
loc: 8
|
|
3407
|
+
state: unreachable
|
|
3408
|
+
confidence: low
|
|
3409
|
+
category: unreachable
|
|
3410
|
+
status: pending
|
|
3411
|
+
review_class: candidate
|
|
3412
|
+
- corpus: rubocop_1_75_0
|
|
3413
|
+
id: RuboCop::Cop::Layout::HeredocArgumentClosingParenthesis#internal_trailing_comma?
|
|
3414
|
+
definition_id: def:v1:ad7b40515d15a39091e15ac1aa5f31a3176640f87c55077c81ac6a055db84d74
|
|
3415
|
+
path: lib/rubocop/cop/layout/heredoc_argument_closing_parenthesis.rb
|
|
3416
|
+
line: 245
|
|
3417
|
+
end_line: 247
|
|
3418
|
+
loc: 3
|
|
3419
|
+
state: unreachable
|
|
3420
|
+
confidence: low
|
|
3421
|
+
category: unreachable
|
|
3422
|
+
status: pending
|
|
3423
|
+
review_class: candidate
|
|
3424
|
+
- corpus: rubocop_1_75_0
|
|
3425
|
+
id: RuboCop::Cop::Layout::HeredocArgumentClosingParenthesis#internal_trailing_comma_offset_from_last_arg
|
|
3426
|
+
definition_id: def:v1:818253ce38eb543dfee1fc790bb79e67c27a57437280df5f061dacb4ec65508f
|
|
3427
|
+
path: lib/rubocop/cop/layout/heredoc_argument_closing_parenthesis.rb
|
|
3428
|
+
line: 250
|
|
3429
|
+
end_line: 263
|
|
3430
|
+
loc: 14
|
|
3431
|
+
state: unreachable
|
|
3432
|
+
confidence: low
|
|
3433
|
+
category: unreachable
|
|
3434
|
+
status: pending
|
|
3435
|
+
review_class: candidate
|
|
3436
|
+
- corpus: rubocop_1_75_0
|
|
3437
|
+
id: RuboCop::Cop::Layout::HeredocArgumentClosingParenthesis#outermost_send_on_same_line
|
|
3438
|
+
definition_id: def:v1:604f8282879f169c7477e260dbc1d748e91ca75a41b0fdbaea71bf4d730524a3
|
|
3439
|
+
path: lib/rubocop/cop/layout/heredoc_argument_closing_parenthesis.rb
|
|
3440
|
+
line: 116
|
|
3441
|
+
end_line: 125
|
|
3442
|
+
loc: 10
|
|
3443
|
+
state: unreachable
|
|
3444
|
+
confidence: low
|
|
3445
|
+
category: unreachable
|
|
3446
|
+
status: pending
|
|
3447
|
+
review_class: candidate
|
|
3448
|
+
- corpus: rubocop_1_75_0
|
|
3449
|
+
id: RuboCop::Cop::Layout::HeredocArgumentClosingParenthesis#remove_incorrect_closing_paren
|
|
3450
|
+
definition_id: def:v1:103232268a5f0d5c50b0f97cc91d80cdc57ea0d1275dbc293b3b24d86ae48a8c
|
|
3451
|
+
path: lib/rubocop/cop/layout/heredoc_argument_closing_parenthesis.rb
|
|
3452
|
+
line: 189
|
|
3453
|
+
end_line: 196
|
|
3454
|
+
loc: 8
|
|
3455
|
+
state: unreachable
|
|
3456
|
+
confidence: low
|
|
3457
|
+
category: unreachable
|
|
3458
|
+
status: pending
|
|
3459
|
+
review_class: candidate
|
|
3460
|
+
- corpus: rubocop_1_75_0
|
|
3461
|
+
id: RuboCop::Cop::Layout::HeredocArgumentClosingParenthesis#remove_incorrect_external_trailing_comma
|
|
3462
|
+
definition_id: def:v1:02f627220734a9103c4907b6910af1bf61fa9f1b0d335912c39a17d133caa505
|
|
3463
|
+
path: lib/rubocop/cop/layout/heredoc_argument_closing_parenthesis.rb
|
|
3464
|
+
line: 278
|
|
3465
|
+
end_line: 288
|
|
3466
|
+
loc: 11
|
|
3467
|
+
state: unreachable
|
|
3468
|
+
confidence: low
|
|
3469
|
+
category: unreachable
|
|
3470
|
+
status: pending
|
|
3471
|
+
review_class: candidate
|
|
3472
|
+
- corpus: rubocop_1_75_0
|
|
3473
|
+
id: RuboCop::Cop::Layout::HeredocArgumentClosingParenthesis#remove_internal_trailing_comma
|
|
3474
|
+
definition_id: def:v1:c2759b391ec7bea1e8a01d9ec18ffc782195b6b9c273b542ad0a3d0098e6b866
|
|
3475
|
+
path: lib/rubocop/cop/layout/heredoc_argument_closing_parenthesis.rb
|
|
3476
|
+
line: 239
|
|
3477
|
+
end_line: 243
|
|
3478
|
+
loc: 5
|
|
3479
|
+
state: unreachable
|
|
3480
|
+
confidence: low
|
|
3481
|
+
category: unreachable
|
|
3482
|
+
status: pending
|
|
3483
|
+
review_class: candidate
|
|
3484
|
+
- corpus: rubocop_1_75_0
|
|
3485
|
+
id: RuboCop::Cop::Layout::HeredocArgumentClosingParenthesis#safe_to_remove_line_containing_closing_paren?
|
|
3486
|
+
definition_id: def:v1:3386969dea4b127497fbef9488492b379dc6ffc1ad5db6462c1b33347813a2bf
|
|
3487
|
+
path: lib/rubocop/cop/layout/heredoc_argument_closing_parenthesis.rb
|
|
3488
|
+
line: 208
|
|
3489
|
+
end_line: 212
|
|
3490
|
+
loc: 5
|
|
3491
|
+
state: unreachable
|
|
3492
|
+
confidence: low
|
|
3493
|
+
category: unreachable
|
|
3494
|
+
status: pending
|
|
3495
|
+
review_class: candidate
|
|
3496
|
+
- corpus: rubocop_1_75_0
|
|
3497
|
+
id: RuboCop::Cop::Layout::HeredocArgumentClosingParenthesis#send_missing_closing_parens?
|
|
3498
|
+
definition_id: def:v1:657564fd8430f1be10e07191754665bade49d23a2eb64136ff487d3359e356e0
|
|
3499
|
+
path: lib/rubocop/cop/layout/heredoc_argument_closing_parenthesis.rb
|
|
3500
|
+
line: 127
|
|
3501
|
+
end_line: 132
|
|
3502
|
+
loc: 6
|
|
3503
|
+
state: unreachable
|
|
3504
|
+
confidence: low
|
|
3505
|
+
category: unreachable
|
|
3506
|
+
status: pending
|
|
3507
|
+
review_class: candidate
|
|
3508
|
+
- corpus: rubocop_1_75_0
|
|
3509
|
+
id: RuboCop::Cop::Layout::HeredocArgumentClosingParenthesis#single_line_send_with_heredoc_receiver?
|
|
3510
|
+
definition_id: def:v1:9a7943da8f47988806a84abfc8f9fb60883b2f156f0da304b543d6cc3870aa8b
|
|
3511
|
+
path: lib/rubocop/cop/layout/heredoc_argument_closing_parenthesis.rb
|
|
3512
|
+
line: 154
|
|
3513
|
+
end_line: 159
|
|
3514
|
+
loc: 6
|
|
3515
|
+
state: unreachable
|
|
3516
|
+
confidence: low
|
|
3517
|
+
category: unreachable
|
|
3518
|
+
status: pending
|
|
3519
|
+
review_class: candidate
|
|
3520
|
+
- corpus: rubocop_1_75_0
|
|
3521
|
+
id: RuboCop::Cop::Layout::HeredocArgumentClosingParenthesis#space?
|
|
3522
|
+
definition_id: def:v1:b338aa083e54a836c147a31fddac5142643607502815e0563fb385e18f251c57
|
|
3523
|
+
path: lib/rubocop/cop/layout/heredoc_argument_closing_parenthesis.rb
|
|
3524
|
+
line: 306
|
|
3525
|
+
end_line: 308
|
|
3526
|
+
loc: 3
|
|
3527
|
+
state: unreachable
|
|
3528
|
+
confidence: low
|
|
3529
|
+
category: unreachable
|
|
3530
|
+
status: pending
|
|
3531
|
+
review_class: candidate
|
|
3532
|
+
- corpus: rubocop_1_75_0
|
|
3533
|
+
id: RuboCop::Cop::Layout::HeredocArgumentClosingParenthesis#subsequent_closing_parentheses_in_same_line?
|
|
3534
|
+
definition_id: def:v1:2a74f9395bdacc13fa346b67d71d704846b8077fe1bb8a80742c99b55a5c3269
|
|
3535
|
+
path: lib/rubocop/cop/layout/heredoc_argument_closing_parenthesis.rb
|
|
3536
|
+
line: 169
|
|
3537
|
+
end_line: 178
|
|
3538
|
+
loc: 10
|
|
3539
|
+
state: unreachable
|
|
3540
|
+
confidence: low
|
|
3541
|
+
category: unreachable
|
|
3542
|
+
status: pending
|
|
3543
|
+
review_class: candidate
|
|
3544
|
+
- corpus: rubocop_1_75_0
|
|
3545
|
+
id: RuboCop::Cop::Layout::HeredocIndentation#adjust_minus
|
|
3546
|
+
definition_id: def:v1:f623b0ad7e56fb600ce4a72827a30f4a9ea04b67423b55de5872b1721fe60f9a
|
|
3547
|
+
path: lib/rubocop/cop/layout/heredoc_indentation.rb
|
|
3548
|
+
line: 120
|
|
3549
|
+
end_line: 124
|
|
3550
|
+
loc: 5
|
|
3551
|
+
state: unreachable
|
|
3552
|
+
confidence: low
|
|
3553
|
+
category: unreachable
|
|
3554
|
+
status: pending
|
|
3555
|
+
review_class: candidate
|
|
3556
|
+
- corpus: rubocop_1_75_0
|
|
3557
|
+
id: RuboCop::Cop::Layout::HeredocIndentation#adjust_squiggly
|
|
3558
|
+
definition_id: def:v1:1b7e7ecafa1af05c0ba05a996eaea0edebebe6bdb02bd49fd7bbab9333cbfc1e
|
|
3559
|
+
path: lib/rubocop/cop/layout/heredoc_indentation.rb
|
|
3560
|
+
line: 115
|
|
3561
|
+
end_line: 118
|
|
3562
|
+
loc: 4
|
|
3563
|
+
state: unreachable
|
|
3564
|
+
confidence: low
|
|
3565
|
+
category: unreachable
|
|
3566
|
+
status: pending
|
|
3567
|
+
review_class: candidate
|
|
3568
|
+
- corpus: rubocop_1_75_0
|
|
3569
|
+
id: RuboCop::Cop::Layout::HeredocIndentation#base_indent_level
|
|
3570
|
+
definition_id: def:v1:31f927438f50d00e819e91b4e807b7755d98634067595c34a3c27e85c41c66ff
|
|
3571
|
+
path: lib/rubocop/cop/layout/heredoc_indentation.rb
|
|
3572
|
+
line: 144
|
|
3573
|
+
end_line: 148
|
|
3574
|
+
loc: 5
|
|
3575
|
+
state: unreachable
|
|
3576
|
+
confidence: low
|
|
3577
|
+
category: unreachable
|
|
3578
|
+
status: pending
|
|
3579
|
+
review_class: candidate
|
|
3580
|
+
- corpus: rubocop_1_75_0
|
|
3581
|
+
id: RuboCop::Cop::Layout::HeredocIndentation#heredoc_body
|
|
3582
|
+
definition_id: def:v1:3db938ae58637dc8c4d157e31ce0bf5678b31545c4e56f76b1b76b0b8f99a404
|
|
3583
|
+
path: lib/rubocop/cop/layout/heredoc_indentation.rb
|
|
3584
|
+
line: 155
|
|
3585
|
+
end_line: 157
|
|
3586
|
+
loc: 3
|
|
3587
|
+
state: unreachable
|
|
3588
|
+
confidence: low
|
|
3589
|
+
category: unreachable
|
|
3590
|
+
status: pending
|
|
3591
|
+
review_class: candidate
|
|
3592
|
+
- corpus: rubocop_1_75_0
|
|
3593
|
+
id: RuboCop::Cop::Layout::HeredocIndentation#heredoc_end
|
|
3594
|
+
definition_id: def:v1:3480c3e2d49ea4b6d07bb4c8466a0885a803371ba46c1ed892f41fcbd4ce0b5d
|
|
3595
|
+
path: lib/rubocop/cop/layout/heredoc_indentation.rb
|
|
3596
|
+
line: 159
|
|
3597
|
+
end_line: 161
|
|
3598
|
+
loc: 3
|
|
3599
|
+
state: unreachable
|
|
3600
|
+
confidence: low
|
|
3601
|
+
category: unreachable
|
|
3602
|
+
status: pending
|
|
3603
|
+
review_class: candidate
|
|
3604
|
+
- corpus: rubocop_1_75_0
|
|
3605
|
+
id: RuboCop::Cop::Layout::HeredocIndentation#heredoc_indent_type
|
|
3606
|
+
definition_id: def:v1:22338294bc72fbeab06b697d4e33e6399f1cd938894b66c17c23322fc916fabc
|
|
3607
|
+
path: lib/rubocop/cop/layout/heredoc_indentation.rb
|
|
3608
|
+
line: 151
|
|
3609
|
+
end_line: 153
|
|
3610
|
+
loc: 3
|
|
3611
|
+
state: unreachable
|
|
3612
|
+
confidence: low
|
|
3613
|
+
category: unreachable
|
|
3614
|
+
status: pending
|
|
3615
|
+
review_class: candidate
|
|
3616
|
+
- corpus: rubocop_1_75_0
|
|
3617
|
+
id: RuboCop::Cop::Layout::HeredocIndentation#indented_body
|
|
3618
|
+
definition_id: def:v1:5323f83484fc2a5054da97272383e061837f37cb2c36017c70803159c9610cdc
|
|
3619
|
+
path: lib/rubocop/cop/layout/heredoc_indentation.rb
|
|
3620
|
+
line: 126
|
|
3621
|
+
end_line: 131
|
|
3622
|
+
loc: 6
|
|
3623
|
+
state: unreachable
|
|
3624
|
+
confidence: low
|
|
3625
|
+
category: unreachable
|
|
3626
|
+
status: pending
|
|
3627
|
+
review_class: candidate
|
|
3628
|
+
- corpus: rubocop_1_75_0
|
|
3629
|
+
id: RuboCop::Cop::Layout::HeredocIndentation#line_too_long?
|
|
3630
|
+
definition_id: def:v1:0f91be3d71d56d3e301dc3015f6c5aaa84a3fd00832b0bee8e1d71745de957fd
|
|
3631
|
+
path: lib/rubocop/cop/layout/heredoc_indentation.rb
|
|
3632
|
+
line: 91
|
|
3633
|
+
end_line: 101
|
|
3634
|
+
loc: 11
|
|
3635
|
+
state: unreachable
|
|
3636
|
+
confidence: low
|
|
3637
|
+
category: unreachable
|
|
3638
|
+
status: pending
|
|
3639
|
+
review_class: candidate
|
|
3640
|
+
- corpus: rubocop_1_75_0
|
|
3641
|
+
id: RuboCop::Cop::Layout::HeredocIndentation#longest_line
|
|
3642
|
+
definition_id: def:v1:e3ac9694218cd686a197c8ed11e3c67eac2aa258175b581c47c17cd832407fed
|
|
3643
|
+
path: lib/rubocop/cop/layout/heredoc_indentation.rb
|
|
3644
|
+
line: 103
|
|
3645
|
+
end_line: 105
|
|
3646
|
+
loc: 3
|
|
3647
|
+
state: unreachable
|
|
3648
|
+
confidence: low
|
|
3649
|
+
category: unreachable
|
|
3650
|
+
status: pending
|
|
3651
|
+
review_class: candidate
|