forked from martezr/inspec-vault
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.rubocop.yml
48 lines (48 loc) · 945 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
---
Documentation:
Enabled: false
AlignParameters:
Enabled: true
HashSyntax:
Enabled: true
LineLength:
Enabled: false
EmptyLinesAroundBlockBody:
Enabled: false
MethodLength:
Max: 40
NumericLiterals:
MinDigits: 10
Metrics/BlockLength:
Max: 35
Metrics/CyclomaticComplexity:
Max: 10
Metrics/PerceivedComplexity:
Max: 10
Metrics/AbcSize:
Max: 30
# temporary deactivated
Style/PercentLiteralDelimiters:
Enabled: false
Lint/AmbiguousBlockAssociation:
Enabled: false
Style/Encoding:
Enabled: false
Layout/IndentationConsistency:
Exclude:
- 'libraries/vault_command.rb'
Layout/IndentationWidth:
Exclude:
- 'libraries/vault_command.rb'
Layout/SpaceAroundOperators:
Exclude:
- 'libraries/vault_command.rb'
Lint/HandleExceptions:
Exclude:
- 'libraries/vault_command.rb'
Lint/Void:
Exclude:
- 'libraries/vault_command.rb'
Style/MissingRespondToMissing:
Exclude:
- 'libraries/vault_command.rb'