-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy path.rubocop_todo.yml
More file actions
75 lines (66 loc) · 2.32 KB
/
.rubocop_todo.yml
File metadata and controls
75 lines (66 loc) · 2.32 KB
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
# This configuration was generated by
# `rubocop --auto-gen-config --auto-gen-only-exclude --exclude-limit 100`
# on 2026-03-05 21:24:10 UTC using RuboCop version 1.85.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: 8
Gusto/NoMetaprogramming:
Exclude:
- 'lib/packs/cli.rb'
- 'lib/packs/private/interactive_cli/use_cases/interface.rb'
- 'spec/packs/private/cli_spec.rb'
# Offense count: 5
# This cop supports safe autocorrection (--autocorrect).
# Configuration parameters: AllowedPatterns.
Sorbet/BlockMethodDefinition:
Exclude:
- 'spec/packs/private/cli_spec.rb'
- 'spec/packs_spec.rb'
# Offense count: 2
# This cop supports safe autocorrection (--autocorrect).
# Configuration parameters: EnforcedStyle, BlockForwardingName.
# SupportedStyles: anonymous, explicit
Naming/BlockForwarding:
Exclude:
- 'lib/packs/configuration.rb'
- 'lib/packs/logging.rb'
# Offense count: 1
# Configuration parameters: Mode, AllowedMethods, AllowedPatterns, AllowBangMethods, WaywardPredicates.
# AllowedMethods: call
# WaywardPredicates: infinite?, nonzero?
Naming/PredicateMethod:
Exclude:
- 'lib/packs/configuration.rb'
# Offense count: 1
Performance/MapMethodChain:
Exclude:
- 'lib/packs/private/interactive_cli/use_cases/get_info.rb'
# Offense count: 65
# Configuration parameters: Prefixes, AllowedPatterns.
# Prefixes: when, with, without
RSpec/ContextWording:
Exclude:
- 'spec/packs/private/cli_spec.rb'
- 'spec/packs_spec.rb'
# Offense count: 2
# Configuration parameters: CustomTransform, IgnoreMethods, IgnoreMetadata, InflectorPath, EnforcedInflector.
# SupportedInflectors: default, active_support
RSpec/SpecFilePathFormat:
Exclude:
- 'spec/packs/private/cli_spec.rb'
- 'spec/verify_docs_spec.rb'
# Offense count: 12
Sorbet/ConstantsFromStrings:
Exclude:
- 'spec/packs/private/cli_spec.rb'
- 'spec/packs_spec.rb'
- 'spec/spec_helper.rb'
# Offense count: 2
# This cop supports unsafe autocorrection (--autocorrect-all).
# Configuration parameters: SuggestedStrictness.
Sorbet/StrictSigil:
Exclude:
- 'sorbet/tapioca/require.rb'
- 'spec/spec_helper.rb'