forked from futhr/spree-postal-service
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.hound.yml
40 lines (30 loc) · 760 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
# This should truly be on for well documented gems.
Style/Documentation:
Enabled: false
# Neatly aligned code is to swell.
Style/SpaceBeforeFirstArg:
Enabled: false
# Rubocop default is leading but hound-ci use trailing.
Style/DotPosition:
EnforcedStyle: leading
# Don't mess with RSpec DSL.
Style/BlockDelimiters:
Exclude:
- 'spec/**/*'
# We really like the readability with newline in beginning of classes.
Style/EmptyLinesAroundMethodBody:
Enabled: false
Style/EmptyLinesAroundClassBody:
Enabled: false
Style/EmptyLinesAroundModuleBody:
Enabled: false
Style/FrozenStringLiteralComment:
Enabled: false
Metrics/AbcSize:
Enabled: false
Metrics/BlockLength:
Enabled: false