-
Notifications
You must be signed in to change notification settings - Fork 53
/
.rubocop_todo.yml
108 lines (95 loc) · 3.96 KB
/
.rubocop_todo.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
# This configuration was generated by
# `rubocop --auto-gen-config --auto-gen-only-exclude`
# on 2024-10-19 10:08:34 UTC using RuboCop version 1.67.0.
# The point is for the user to remove these configuration records
# one by one as the offenses are removed from the code base.
# Note that changes in the inspected code, or installation of new
# versions of RuboCop, may require this file to be generated again.
# Offense count: 31
# Configuration parameters: AllowedMethods, AllowedPatterns, CountRepeatedAttributes.
Metrics/AbcSize:
Max: 112
Exclude:
- 'lib/super_diff/basic/operation_tree_builders/hash.rb'
# Offense count: 993
# Configuration parameters: CountComments, CountAsOne, AllowedMethods, AllowedPatterns.
# AllowedMethods: refine
Metrics/BlockLength:
Max: 5536
# Offense count: 2
# Configuration parameters: CountBlocks, CountModifierForms, Max.
Metrics/BlockNesting:
Exclude:
- 'lib/super_diff/basic/operation_tree_builders/hash.rb'
# Offense count: 13
# Configuration parameters: CountComments, Max, CountAsOne.
Metrics/ClassLength:
Exclude:
- 'lib/super_diff/basic/diff_formatters/collection.rb'
- 'lib/super_diff/basic/operation_tree_builders/hash.rb'
- 'lib/super_diff/basic/operation_tree_flatteners/collection.rb'
- 'lib/super_diff/core/configuration.rb'
- 'lib/super_diff/core/inspection_tree.rb'
- 'lib/super_diff/core/tiered_lines_elider.rb'
- 'lib/super_diff/csi/document.rb'
- 'lib/super_diff/csi/eight_bit_color.rb'
- 'lib/super_diff/csi/four_bit_color.rb'
- 'lib/super_diff/rspec/matcher_text_builders/base.rb'
- 'spec/support/command_runner.rb'
- 'spec/support/integration/test_programs/base.rb'
- 'support/test_plan.rb'
# Offense count: 3
# Configuration parameters: AllowedMethods, AllowedPatterns, Max.
Metrics/CyclomaticComplexity:
Exclude:
- 'lib/super_diff/basic/operation_tree_builders/hash.rb'
- 'lib/super_diff/core/abstract_operation_tree_builder.rb'
- 'lib/super_diff/csi/document.rb'
# Offense count: 89
# Configuration parameters: CountComments, CountAsOne, AllowedMethods, AllowedPatterns.
Metrics/MethodLength:
Max: 114
# Offense count: 1
# Configuration parameters: CountComments, Max, CountAsOne.
Metrics/ModuleLength:
Exclude:
- 'lib/super_diff.rb'
# Offense count: 3
# Configuration parameters: Max, CountKeywordArgs, MaxOptionalParameters.
Metrics/ParameterLists:
Exclude:
- 'lib/super_diff/csi/eight_bit_color.rb'
- 'spec/support/integration/helpers.rb'
- 'spec/support/models/player.rb'
# Offense count: 4
# Configuration parameters: AllowedMethods, AllowedPatterns, Max.
Metrics/PerceivedComplexity:
Exclude:
- 'lib/super_diff/basic/operation_tree_builders/hash.rb'
- 'lib/super_diff/core/abstract_operation_tree_builder.rb'
- 'lib/super_diff/core/tiered_lines_elider.rb'
- 'lib/super_diff/csi/document.rb'
# Offense count: 1
# Configuration parameters: ExpectMatchingDefinition, CheckDefinitionPathHierarchy, CheckDefinitionPathHierarchyRoots, Regex, IgnoreExecutableScripts, AllowedAcronyms.
# CheckDefinitionPathHierarchyRoots: lib, spec, test, src
# AllowedAcronyms: CLI, DSL, ACL, API, ASCII, CPU, CSS, DNS, EOF, GUID, HTML, HTTP, HTTPS, ID, IP, JSON, LHS, QPS, RAM, RHS, RPC, SLA, SMTP, SQL, SSH, TCP, TLS, TTL, UDP, UI, UID, UUID, URI, URL, UTF8, VM, XML, XMPP, XSRF, XSS
# Offense count: 207
# Configuration parameters: AllowedConstants.
Style/Documentation:
Enabled: false
# Offense count: 3
# This cop supports safe autocorrection (--autocorrect).
# Configuration parameters: EnforcedStyle.
# SupportedStyles: format, sprintf, percent
Style/FormatString:
Exclude:
- 'lib/super_diff/core/helpers.rb'
- 'spec/unit/core/helpers_spec.rb'
# Offense count: 2
# This cop supports unsafe autocorrection (--autocorrect-all).
# Configuration parameters: EnforcedStyle, Autocorrect.
# SupportedStyles: module_function, extend_self, forbidden
Style/ModuleFunction:
Exclude:
- 'lib/super_diff/core/helpers.rb'
- 'spec/support/unit/helpers.rb'