.hound.yml in tapestry-0.1.0 vs .hound.yml in tapestry-0.2.0

- old
+ new

@@ -3,12 +3,12 @@ - tapestry.gemspec - examples/*.rb - spec/**/* # Removing need for frozen string literal comment. -#Style/FrozenStringLiteralComment: -# Enabled: false +Style/FrozenStringLiteralComment: + Enabled: false # Removing the preference for string single quotes. Style/StringLiterals: Enabled: false @@ -58,5 +58,11 @@ Max: 15 # Encourage fewer parameters. Metrics/ParameterLists: Max: 4 + +# Allow methods with has_ for predicates. +Style/PredicateName: + NameWhitelist: + - has_correct_url? + - has_correct_title?