-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.rubocop.yml
More file actions
54 lines (40 loc) · 790 Bytes
/
.rubocop.yml
File metadata and controls
54 lines (40 loc) · 790 Bytes
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
AlignParameters:
Enabled: false
AllCops:
# Version on /opt/chefdk/embedded/bin/ruby --version
TargetRubyVersion: 2.6.5
Exclude:
- 'berks-cookbooks/**/*'
- '.idea/**/*'
- '.git/**/*'
- '.kitchen/**/*'
- '*.lock'
- 'vendor/**/*'
- 'tmp/**/*'
CaseIndentation:
IndentOneStep: false
CyclomaticComplexity:
Enabled: false
Documentation:
Enabled: false
Metrics/AbcSize:
Max: 28
Metrics/LineLength:
Max: 256
Metrics/BlockLength:
Enabled: false
Metrics/MethodLength:
Max: 128
CountComments: false
Metrics/PerceivedComplexity:
Max: 10
Style/Encoding:
Enabled: false
Style/SignalException:
EnforcedStyle: only_raise
Style/EmptyLiteral:
Enabled: false
Encoding:
Enabled: false
Style/FrozenStringLiteralComment:
Enabled: false