Sha256: c94cf0b0a2e1c44667da7f71d81e8c90df399b5ab9ddca8bf5272fe57469ea75
Contents?: true
Size: 1.37 KB
Versions: 2
Compression:
Stored size: 1.37 KB
Contents
AllCops: Exclude: - data_accessible.gemspec - test/*.rb - spec/**/* # Removing need for frozen string literal comment. Style/FrozenStringLiteralComment: Enabled: false # Removing the preference for string single quotes. Style/StringLiterals: Enabled: false # Missing top-level module documentation comment. Style/Documentation: Enabled: false # Prefer reduce over inject. Style/CollectionMethods: PreferredMethods: reduce: 'inject' # Use each_with_object instead of inject. Style/EachWithObject: Enabled: false # Prefer fail over raise. Style/SignalException: Enabled: false # This never works for validations. Style/AlignHash: EnforcedLastArgumentHashStyle: ignore_implicit # Align multi-line params with previous line. Style/AlignParameters: EnforcedStyle: with_fixed_indentation # Indent `when` clause one step from `case`. Style/CaseIndentation: IndentOneStep: true # Don't force bad var names for reduce/inject loops. Style/SingleLineBlockParams: Enabled: false # For method chains, keep the dot with the method name. Style/DotPosition: EnforcedStyle: leading # Stop nesting so hard. Metrics/BlockNesting: Max: 2 # Encourage short methods. Metrics/MethodLength: Max: 10 # Encourage fewer parameters. Metrics/ParameterLists: Max: 4 # Need to use load, rather than safe_load to support # symbol parsing. Security/YAMLLoad: Enabled: false
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
data_accessible-1.0.2 | .hound.yml |
data_accessible-1.0.1 | .hound.yml |