diff options
author | Louise Crow <louise.crow@gmail.com> | 2014-06-02 17:01:01 +0100 |
---|---|---|
committer | Louise Crow <louise.crow@gmail.com> | 2014-06-02 17:01:01 +0100 |
commit | c38327f35a5203a90c9f9084c16da2700d96726a (patch) | |
tree | a1c4e9fff743627c7e0a53063cd3f92ff7c11e90 | |
parent | 52099d889277948130a185a383313ad3f11ceb56 (diff) |
Don't check for Ruby 1.9 hash syntax
We need to be compatible with Ruby 1.8
-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 |