summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSamuel E. Giddins <segiddins@segiddins.me>2015-07-17 16:33:50 -0700
committerSamuel E. Giddins <segiddins@segiddins.me>2015-07-17 16:33:50 -0700
commita37ab7e7b9fd97206d39034573be2972357b9f44 (patch)
tree65d29cb6542455a44fbb7bd9f255df4e28fa046c
parent7515ea86066b0f81f93a212b22a2219605aa7e75 (diff)
downloadbundler-a37ab7e7b9fd97206d39034573be2972357b9f44.tar.gz
[RuboCop] Disable Style/TrailingComma for 1.8.7 support
See https://github.com/bundler/bundler/pull/3847
-rw-r--r--.rubocop.yml3
-rw-r--r--.rubocop_todo.yml6
2 files changed, 3 insertions, 6 deletions
diff --git a/.rubocop.yml b/.rubocop.yml
index d0b85635ba..d5e7780ea6 100644
--- a/.rubocop.yml
+++ b/.rubocop.yml
@@ -53,6 +53,9 @@ Style/EachWithObject:
Style/SpecialGlobalVars:
Enabled: false
+Style/TrailingComma:
+ Enabled: false
+
# Metrics
# Arbitrary max lengths for classes simply do not work and enabling this will
diff --git a/.rubocop_todo.yml b/.rubocop_todo.yml
index f36f1340ef..6a0675432e 100644
--- a/.rubocop_todo.yml
+++ b/.rubocop_todo.yml
@@ -481,12 +481,6 @@ Style/SpaceInsideHashLiteralBraces:
Style/SpaceInsideStringInterpolation:
Enabled: false
-# Offense count: 14
-# Cop supports --auto-correct.
-# Configuration parameters: EnforcedStyleForMultiline, SupportedStyles.
-Style/TrailingComma:
- Enabled: false
-
# Offense count: 1
# Cop supports --auto-correct.
Style/TrailingUnderscoreVariable: