forked from spree-contrib/spree_volume_pricing
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.hound.yml
40 lines (31 loc) · 871 Bytes
/
.hound.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
---
# Too picky.
Metrics/LineLength:
Enabled: false
Metrics/AbcSize:
Enabled: false
# This should truly be on for well documented gems.
Style/Documentation:
Enabled: false
# Neatly aligned code is too swell.
Style/SingleSpaceBeforeFirstArg:
Enabled: false
# Don't mess with RSpec DSL.
Style/BlockDelimiters:
Exclude:
- 'spec/**/*'
# We really like the readability with newline in beginning of classes.
Style/EmptyLinesAroundBlockBody:
Enabled: false
Style/EmptyLinesAroundClassBody:
Enabled: false
# It say we should use fail over raise.
Style/SignalException:
Enabled: false
# Use nested module/class definitions instead of compact style.
# Too high git impact to change this now.
Style/ClassAndModuleChildren:
Enabled: false
# Avoid contradictory style rules by enforce single quotes.
Style/StringLiterals:
EnforcedStyle: single_quotes