-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy path.rubocop_todo.yml
49 lines (44 loc) · 1.51 KB
/
.rubocop_todo.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
# This configuration was generated by
# `rubocop --auto-gen-config`
# on 2023-06-21 23:43:03 UTC using RuboCop version 1.52.1.
# The point is for the user to remove these configuration records
# one by one as the offenses are removed from the code base.
# Note that changes in the inspected code, or installation of new
# versions of RuboCop, may require this file to be generated again.
# Offense count: 2
Lint/RescueException:
Exclude:
- 'lib/recog/fingerprint.rb'
# Offense count: 1
# This cop supports unsafe autocorrection (--autocorrect-all).
# Configuration parameters: EnforcedStyle.
# SupportedStyles: nested, compact
Style/ClassAndModuleChildren:
Exclude:
- 'lib/recog/fingerprint/test.rb'
# Offense count: 6
Style/ClassVars:
Exclude:
- 'lib/recog/nizer.rb'
# Offense count: 10
# Configuration parameters: AllowedConstants.
Style/Documentation:
Exclude:
- 'spec/**/*'
- 'test/**/*'
- 'lib/recog/db_manager.rb'
- 'lib/recog/fingerprint/test.rb'
- 'lib/recog/fingerprint_parse_error.rb'
- 'lib/recog/formatter.rb'
- 'lib/recog/match_reporter.rb'
- 'lib/recog/matcher.rb'
- 'lib/recog/matcher_factory.rb'
- 'lib/recog/nizer.rb'
- 'lib/recog/verifier.rb'
- 'lib/recog/verify_reporter.rb'
# Offense count: 8
# This cop supports safe autocorrection (--autocorrect).
# Configuration parameters: MaxUnannotatedPlaceholdersAllowed, AllowedMethods, AllowedPatterns.
# SupportedStyles: annotated, template, unannotated
Style/FormatStringToken:
EnforcedStyle: unannotated