forked from ManageIQ/manageiq
-
Notifications
You must be signed in to change notification settings - Fork 1
/
.rubocop.yml
48 lines (48 loc) · 876 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
38
39
40
41
42
43
44
45
46
47
48
inherit_from:
- https://raw.githubusercontent.com/ManageIQ/guides/master/.rubocop.yml
#
# Overrides
#
GlobalVars:
AllowedVariables:
# Loggers
- $audit_log
- $api_log
- $aws_log
- $azure_log
- $fog_log
- $log
- $miq_ae_logger
- $policy_log
- $rails_log
- $rhevm_log
- $kube_log
- $mw_log
- $scvmm_log
- $vim_log
- $websocket_log
# In Automate methods
- $evm
#
# Special Exclusions
#
AllCops:
TargetRubyVersion: 2.2
Exclude:
- gems/pending/VMwareWebService/wsdl41/vimws25MappingRegistry.rb
- db/schema.rb
- vendor/**/*
ClassAndModuleCamelCase:
Exclude:
- lib/miq_automation_engine/service_models/*.rb
FileName:
Exclude:
- lib/miq_automation_engine/service_models/*.rb
Metrics/LineLength:
Exclude:
- Gemfile
- gems/pending/Gemfile
Style/ExtraSpacing:
Exclude:
- Gemfile
- gems/pending/Gemfile