aboutsummaryrefslogtreecommitdiffstats
path: root/.rubocop.yml
diff options
context:
space:
mode:
authorSamuel Giddins <segiddins@segiddins.me>2016-01-14 15:37:48 -0600
committerSamuel Giddins <segiddins@segiddins.me>2016-01-31 22:21:13 -0600
commitc8afcc19bacfefc638cfac9bce9f4e09ec238d47 (patch)
treea0212e691573898f59f95fa6298daf551fe2d434 /.rubocop.yml
parentc71bdfc892214babefc4c993bba0e23546fe7367 (diff)
downloadbundler-c8afcc19bacfefc638cfac9bce9f4e09ec238d47.tar.gz
Update to RuboCop 0.36.0
Diffstat (limited to '.rubocop.yml')
-rw-r--r--.rubocop.yml5
1 files changed, 3 insertions, 2 deletions
diff --git a/.rubocop.yml b/.rubocop.yml
index 03f00741..24360fcb 100644
--- a/.rubocop.yml
+++ b/.rubocop.yml
@@ -2,6 +2,7 @@ inherit_from:
- .rubocop_todo.yml
AllCops:
+ TargetRubyVersion: 1.9
Exclude:
- tmp/**/*
- lib/bundler/vendor/**/*
@@ -57,7 +58,7 @@ Style/StringLiteralsInInterpolation:
# Having these make it easier to *not* forget to add one when adding a new
# value and you can simply copy the previous line.
-Style/TrailingComma:
+Style/TrailingCommaInLiteral:
EnforcedStyleForMultiline: comma
Style/TrailingUnderscoreVariable:
@@ -84,7 +85,7 @@ Style/EachWithObject:
Style/SpecialGlobalVars:
Enabled: false
-Style/TrailingComma:
+Style/TrailingCommaInArguments:
Enabled: false
Performance/FlatMap: