-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.rubocop.yml
57 lines (45 loc) · 988 Bytes
/
.rubocop.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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
AllCops:
Include:
- 'Gemfile'
- 'Rakefile'
- 'multi_xml.gemspec'
# Avoid long parameter lists
ParameterLists:
Max: 3
CountKeywordArgs: true
ClassLength:
Max: 85
LineLength:
Enabled: false
MethodLength:
CountComments: false
Max: 12
# Avoid more than `Max` levels of nesting.
BlockNesting:
Max: 5
# Align with the style guide.
CollectionMethods:
PreferredMethods:
map: 'map'
reduce: 'inject'
find: 'detect'
find_all: 'select'
# Disable documentation checking until a class needs to be documented once
Documentation:
Enabled: false
# No spaces inside hash literals
SpaceInsideHashLiteralBraces:
EnforcedStyle: no_space
# Allow dots at the end of lines
DotPosition:
Enabled: false
# Don't require magic comment at the top of every file
Encoding:
Enabled: false
# Align ends correctly
EndAlignment:
AlignWith: variable
# Indentation of when/else
CaseIndentation:
IndentWhenRelativeTo: end
IndentOneStep: false