summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLamont Granquist <lamont@scriptkiddie.org>2017-08-24 12:21:29 -0700
committerLamont Granquist <lamont@scriptkiddie.org>2017-08-24 12:21:29 -0700
commit9bb7b4145443689f5509ab13a904b1e31603a23f (patch)
treee9af791805f7fe591363ad111b22629834e067be
parentce06d947971624275f7138a4c9b2f1ea0b4b65be (diff)
downloadchef-9bb7b4145443689f5509ab13a904b1e31603a23f.tar.gz
add .rubocop.yml to disable newly enabled chefstyle cops
Signed-off-by: Lamont Granquist <lamont@scriptkiddie.org>
-rw-r--r--.rubocop.yml26
1 files changed, 26 insertions, 0 deletions
diff --git a/.rubocop.yml b/.rubocop.yml
index 3c2a48e548..9d2901a663 100644
--- a/.rubocop.yml
+++ b/.rubocop.yml
@@ -4,3 +4,29 @@ AllCops:
- "vendor/**/*"
- "pkg/**/*"
- "chef-config/pkg/**/*"
+Security/Eval:
+ Enabled: false
+Lint/UselessAssignment:
+ Enabled: false
+Lint/DeprecatedClassMethods:
+ Enabled: false
+Lint/ParenthesesAsGroupedExpression:
+ Enabled: false
+Lint/AmbiguousRegexpLiteral:
+ Enabled: false
+Lint/AssignmentInCondition:
+ Enabled: false
+Lint/AmbiguousBlockAssociation:
+ Enabled: false
+Lint/UnneededSplatExpansion:
+ Enabled: false
+Lint/ShadowingOuterLocalVariable:
+ Enabled: false
+Lint/EmptyWhen:
+ Enabled: false
+Lint/IneffectiveAccessModifier:
+ Enabled: false
+Lint/ShadowedException:
+ Enabled: false
+Lint/PercentStringArray:
+ Enabled: false