forked from chef/knife-vsphere
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.rubocop.yml
37 lines (32 loc) · 984 Bytes
/
.rubocop.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
# Offense count: 1
Lint/AmbiguousBlockAssociation:
Exclude:
- 'lib/chef/knife/vsphere_vm_vnc_set.rb'
# Offense count: 1
# Configuration parameters: AllowSafeAssignment.
Lint/AssignmentInCondition:
Exclude:
- 'lib/chef/knife/vsphere_vm_disk_list.rb'
# Offense count: 1
Lint/EmptyWhen:
Exclude:
- 'lib/chef/knife/vsphere_vm_network_add.rb'
# Offense count: 1
Lint/ShadowingOuterLocalVariable:
Exclude:
- 'lib/chef/knife/vsphere_vm_clone.rb'
# Offense count: 3
Lint/UselessAssignment:
Exclude:
- 'lib/chef/knife/vsphere_vm_clone.rb'
- 'lib/chef/knife/vsphere_vm_disk_extend.rb'
- 'lib/chef/knife/vsphere_vm_property_set.rb'
# Offense count: 14
# Configuration parameters: EnforcedStyle.
# SupportedStyles: snake_case, camelCase
Naming/VariableName:
Exclude:
- 'lib/chef/knife/base_vsphere_command.rb'
- 'lib/chef/knife/vsphere_cluster_list.rb'
- 'lib/chef/knife/vsphere_vm_delete.rb'
- 'lib/chef/knife/vsphere_vm_vmdk_add.rb'