-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy path.rubocop_todo.yml
More file actions
75 lines (68 loc) · 2.69 KB
/
.rubocop_todo.yml
File metadata and controls
75 lines (68 loc) · 2.69 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`
# on 2023-11-28 15:00:57 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: 3
# Configuration parameters: AllowComments, AllowNil.
Lint/SuppressedException:
Exclude:
- 'lib/puppet_x/sqlserver/features.rb'
- 'lib/puppet_x/sqlserver/sql_connection.rb'
# Offense count: 2
# Configuration parameters: Include, CustomTransform, IgnoreMethods, SpecSuffixOnly.
# Include: **/*_spec*rb*, **/spec/**/*
RSpec/FilePath:
Exclude:
- 'spec/unit/puppet_x/server_helper_spec.rb'
- 'spec/unit/puppet_x/sql_connection_spec.rb'
# Offense count: 302
# Configuration parameters: AssignmentOnly.
RSpec/InstanceVariable:
Exclude:
- 'spec/acceptance/sqlserver_config_spec.rb'
- 'spec/acceptance/sqlserver_database_spec.rb'
- 'spec/acceptance/sqlserver_instance_spec.rb'
- 'spec/acceptance/sqlserver_login_spec.rb'
- 'spec/acceptance/sqlserver_role_spec.rb'
- 'spec/acceptance/sqlserver_tsql_spec.rb'
- 'spec/acceptance/sqlserver_user_spec.rb'
- 'spec/unit/puppet/property/tsql_spec.rb'
- 'spec/unit/puppet/provider/sqlserver_features_spec.rb'
- 'spec/unit/puppet/provider/sqlserver_instance_spec.rb'
- 'spec/unit/puppet/provider/sqlserver_tsql_spec.rb'
- 'spec/unit/puppet/type/sqlserver_instance_spec.rb'
- 'spec/unit/puppet_x/sql_connection_spec.rb'
# Offense count: 33
# Configuration parameters: EnforcedStyle, IgnoreSharedExamples.
# SupportedStyles: always, named_only
RSpec/NamedSubject:
Exclude:
- 'spec/defines/config_spec.rb'
- 'spec/defines/database_spec.rb'
- 'spec/defines/login_spec.rb'
- 'spec/defines/role/permissions_spec.rb'
- 'spec/defines/role_spec.rb'
- 'spec/defines/sp_configure_spec.rb'
- 'spec/defines/user_spec.rb'
- 'spec/functions/partial_params_args_spec.rb'
- 'spec/unit/puppet_x/sql_connection_spec.rb'
# Offense count: 6
RSpec/SubjectStub:
Exclude:
- 'spec/unit/puppet_x/server_helper_spec.rb'
- 'spec/unit/puppet_x/sql_connection_spec.rb'
# Offense count: 2
# Configuration parameters: IgnoreNameless, IgnoreSymbolicNames.
RSpec/VerifiedDoubles:
Exclude:
- 'spec/unit/puppet_x/sql_connection_spec.rb'
# Offense count: 1
# This cop supports unsafe autocorrection (--autocorrect-all).
# Configuration parameters: PreferredMethods, MethodsAcceptingSymbol.
# MethodsAcceptingSymbol: inject, reduce
Style/CollectionMethods:
Exclude:
- 'lib/puppet/provider/sqlserver_instance/mssql.rb'