Disable trailing comma style rule for Ruby 1.8 support

This commit is contained in:
Jack Nagel 2015-05-12 21:06:34 -04:00
parent e04e898d5c
commit eda5922eb4

View File

@ -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