aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorJack Nagel2015-05-12 21:06:34 -0400
committerJack Nagel2015-05-12 21:06:48 -0400
commiteda5922eb47b464f11b8d7cca605a5bb73b42450 (patch)
treeaaf654fcd138dcb5a50c65abfc10ccce890e51ef /Library
parente04e898d5c9b5c3c726ceb769a0e63246ed90ddc (diff)
downloadbrew-eda5922eb47b464f11b8d7cca605a5bb73b42450.tar.bz2
Disable trailing comma style rule for Ruby 1.8 support
Diffstat (limited to 'Library')
-rw-r--r--Library/.rubocop.yml4
1 files changed, 4 insertions, 0 deletions
diff --git a/Library/.rubocop.yml b/Library/.rubocop.yml
index 176e43e05..b839f3da2 100644
--- a/Library/.rubocop.yml
+++ b/Library/.rubocop.yml
@@ -117,3 +117,7 @@ Style/TrailingBlankLines:
# we use raise, not fail
Style/SignalException:
EnforcedStyle: only_raise
+
+# trailing commas in method argument lists are a syntax error in 1.8
+Style/TrailingComma:
+ Enabled: false