diff options
-rw-r--r-- | .hound.yml | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/.hound.yml b/.hound.yml index 875973187..574cfe7ac 100644 --- a/.hound.yml +++ b/.hound.yml @@ -3,3 +3,9 @@ Style/IndentationWidth: Description: 'Use 2 spaces for indentation.' Enabled: false + +Style/HashSyntax: + Description: >- + Prefer Ruby 1.9 hash syntax { a: 1, b: 2 } over 1.8 syntax + { :a => 1, :b => 2 }. + Enabled: false |