-
Notifications
You must be signed in to change notification settings - Fork 309
/
.rubocop_todo.yml
55 lines (51 loc) · 1.85 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
# This configuration was generated by
# `rubocop --auto-gen-config`
# on 2023-11-28 17:27:51 UTC using RuboCop version 1.48.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
# This cop supports safe autocorrection (--autocorrect).
Lint/RedundantCopDisableDirective:
Exclude:
- 'spec/spec_helper.rb'
- 'spec/spec_helper_acceptance_local.rb'
# Offense count: 22
# Configuration parameters: AllowKeywordBlockArguments.
Lint/UnderscorePrefixedVariableName:
Exclude:
- 'spec/helper/get_defaults.rb'
- 'spec/helper/get_values_init.rb'
- 'spec/shared_examples/compose.rb'
- 'spec/shared_examples/config.rb'
- 'spec/shared_examples/exec.rb'
- 'spec/shared_examples/image.rb'
- 'spec/shared_examples/install.rb'
- 'spec/shared_examples/machine.rb'
- 'spec/shared_examples/params.rb'
- 'spec/shared_examples/plugin.rb'
- 'spec/shared_examples/registry.rb'
# Offense count: 7
Lint/UselessAssignment:
Exclude:
- 'spec/classes/networks_spec.rb'
- 'spec/defines/run_spec.rb'
- 'spec/helper/get_defaults.rb'
- 'spec/shared_examples/compose.rb'
- 'spec/shared_examples/image.rb'
- 'spec/shared_examples/machine.rb'
# Offense count: 23
# Configuration parameters: EnforcedStyle, IgnoreSharedExamples.
# SupportedStyles: always, named_only
RSpec/NamedSubject:
Exclude:
- 'spec/classes/compose_spec.rb'
- 'spec/classes/images_spec.rb'
- 'spec/classes/init_spec.rb'
- 'spec/classes/networks_spec.rb'
- 'spec/classes/plugins_spec.rb'
- 'spec/defines/image_spec.rb'
- 'spec/defines/plugin_spec.rb'
- 'spec/defines/run_spec.rb'
- 'spec/defines/services_spec.rb'