-
Notifications
You must be signed in to change notification settings - Fork 100
/
Copy path.rubocop.yml
29 lines (27 loc) · 1.11 KB
/
.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
# Configuration parameters: AllowSafeAssignment.
Lint/AssignmentInCondition:
Exclude:
- 'lib/chef/knife/cloud/openstack_service.rb'
Lint/ParenthesesAsGroupedExpression:
Exclude:
- 'spec/functional/flavor_list_func_spec.rb'
- 'spec/functional/floating_ip_list_func_spec.rb'
- 'spec/functional/group_list_func_spec.rb'
- 'spec/functional/image_list_func_spec.rb'
- 'spec/functional/network_list_func_spec.rb'
- 'spec/functional/server_list_func_spec.rb'
- 'spec/functional/volume_list_func_spec.rb'
- 'spec/unit/openstack_group_list_spec.rb'
- 'spec/unit/openstack_image_list_spec.rb'
- 'spec/unit/openstack_network_list_spec.rb'
- 'spec/unit/openstack_server_delete_spec.rb'
- 'spec/unit/openstack_server_list_spec.rb'
- 'spec/unit/openstack_server_show_spec.rb'
- 'spec/unit/openstack_service_spec.rb'
Lint/UselessAssignment:
Exclude:
- 'lib/chef/knife/openstack_floating_ip_disassociate.rb'
- 'lib/chef/knife/openstack_server_create.rb'
- 'spec/integration/openstack_spec.rb'
- 'spec/spec_helper.rb'
- 'spec/unit/openstack_floating_ip_release_spec.rb'