-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.rubocop_todo.yml
81 lines (72 loc) · 2.56 KB
/
.rubocop_todo.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
# This configuration was generated by
# `rubocop --auto-gen-config`
# on 2025-01-06 12:27:40 UTC using RuboCop version 1.69.2.
# The point is for the user to remove these configuration records
# one by one as the offenses are removed from the code base.
# Note that changes in the inspected code, or installation of new
# versions of RuboCop, may require this file to be generated again.
# Offense count: 1
# This cop supports safe autocorrection (--autocorrect).
# Configuration parameters: EnforcedStyle, IndentOneStep, IndentationWidth.
# SupportedStyles: case, end
Layout/CaseIndentation:
Exclude:
- 'lib/iev/iso_639_code.rb'
# Offense count: 1
# This cop supports safe autocorrection (--autocorrect).
# Configuration parameters: EnforcedStyleAlignWith, Severity.
# SupportedStylesAlignWith: keyword, variable, start_of_line
Layout/EndAlignment:
Exclude:
- 'lib/iev/iso_639_code.rb'
# Offense count: 45
# This cop supports safe autocorrection (--autocorrect).
# Configuration parameters: Max, AllowHeredoc, AllowURI, URISchemes, IgnoreCopDirectives, AllowedPatterns, SplitStrings.
# URISchemes: http, https
Layout/LineLength:
Exclude:
- 'lib/iev/cli/command.rb'
- 'lib/iev/cli/command_helper.rb'
- 'lib/iev/db_cache.rb'
- 'lib/iev/source_parser.rb'
- 'spec/acceptance/db2yaml_spec.rb'
- 'spec/acceptance/xlsx2yaml_spec.rb'
- 'spec/iev_spec.rb'
# Offense count: 1
Lint/MixedRegexpCaptureTypes:
Exclude:
- 'lib/iev/term_builder.rb'
# Offense count: 10
# Configuration parameters: AllowedMethods, AllowedPatterns, CountRepeatedAttributes, Max.
Metrics/AbcSize:
Exclude:
- 'lib/iev/converter/mathml_to_asciimath.rb'
- 'lib/iev/db_writer.rb'
- 'lib/iev/source_parser.rb'
- 'lib/iev/term_builder.rb'
# Offense count: 5
# Configuration parameters: AllowedMethods, AllowedPatterns, Max.
Metrics/CyclomaticComplexity:
Exclude:
- 'lib/iev.rb'
- 'lib/iev/converter/mathml_to_asciimath.rb'
- 'lib/iev/source_parser.rb'
- 'lib/iev/term_builder.rb'
# Offense count: 21
# Configuration parameters: CountComments, CountAsOne, AllowedMethods, AllowedPatterns.
Metrics/MethodLength:
Max: 74
# Offense count: 3
# Configuration parameters: AllowedMethods, AllowedPatterns, Max.
Metrics/PerceivedComplexity:
Exclude:
- 'lib/iev.rb'
- 'lib/iev/converter/mathml_to_asciimath.rb'
- 'lib/iev/term_builder.rb'
# Offense count: 1
# This cop supports unsafe autocorrection (--autocorrect-all).
# Configuration parameters: EnforcedStyle.
# SupportedStyles: literals, strict
Style/MutableConstant:
Exclude:
- 'lib/iev/iso_639_code.rb'