forked from DataDog/chef-datadog
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.rubocop.yml
45 lines (35 loc) · 1.19 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
# inherit_from: .rubocop_todo.yml
# Stylistic choices of this cookbook.
# We still have HashRockets in a lot of places, ignore them.
Style/HashSyntax:
Enabled: false
# We're fine with multi-line blocks defined with `{...}` instead of `do...end`
Style/BlockDelimiters:
Enabled: false
Style/PercentLiteralDelimiters:
PreferredDelimiters:
default: '[]'
'%i': '[]'
'%w': '[]'
Style/TrailingCommaInArrayLiteral:
# TODO: Uncoment this and open a massive PR which adds all the trailing commas
#EnforcedStyleForMultiline: comma
Enabled: false
Style/TrailingCommaInHashLiteral:
# TODO: Uncoment this and open a massive PR which adds all the trailing commas
#EnforcedStyleForMultiline: comma
Enabled: false
# Only enforce a wordlist for 5 or longer lists.
Style/WordArray:
MinSize: 5
ChefDeprecations/DeprecatedChefSpecPlatform:
# We want to keep compatiblity with old distros/platforms
Enabled: false
ChefModernize/UnnecessaryDependsChef14:
# We want to keep compatiblity with Chef < 14
Enabled: false
ChefDeprecations/ChefHandlerUsesSupports:
# We want to keep compatiblity with Chef < 14
Enabled: false
ChefStyle/TrueClassFalseClassResourceProperties:
Enabled: false