-
Notifications
You must be signed in to change notification settings - Fork 25
/
.rubocop.yml
98 lines (67 loc) · 1.7 KB
/
.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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
# TODO: Remove the following once the rules in the file is addressed
inherit_from:
- .rubocop_todo.yml
# end TODO
MethodLength:
Description: 'Avoid methods longer than 30 lines of code.'
Max: 45 # TODO: set to 30
SpaceInsideHashLiteralBraces:
EnforcedStyleIsWithSpaces: false
HashSyntax:
Enabled: false # don't force 1.9 hash syntax
SpaceInsideHashLiteralBraces:
Enabled: false # allow spaces (eg { :a => 1 })
LeadingCommentSpace:
Enabled: false
IfUnlessModifier:
Enabled: false
RescueModifier:
Enabled: false
AssignmentInCondition:
Enabled: false
WhileUntilModifier:
Enabled: false
AlignParameters:
Enabled: false # don't care if parameters are not aligned
ParenthesesAroundCondition:
Enabled: false
DotPosition:
Enabled: false
Lint/UnusedMethodArgument:
Enabled: false
Lambda:
Enabled: false # don't require -> for single line lambdas
RedundantSelf:
Enabled: false
RedundantReturn:
Enabled: false
SpaceInsideHashLiteralBraces:
Enabled: false # we allow spaces inside hash brackets
Documentation:
Enabled: false # don't require documentation
Encoding:
Enabled: false # don't require utf-8 encoding on every file
MethodCalledOnDoEndBlock:
Enabled: true
SingleLineBlockParams:
Enabled: false
Style/Next:
Enabled: false # don't enforce next in loops over if/unless
Rails/ActionFilter:
Enabled: false # Rails 4.0 check
FormatString:
Enabled: false # we use % for i18n
Style/WordArray:
Enabled: false # don't force usage of %w()
Metrics/LineLength:
Max: 120
Style/GuardClause:
Enabled: false
Metrics/ClassLength:
Max: 600
Metrics/CyclomaticComplexity:
Enabled: false
Style/StringLiterals:
Enabled: false
Style/SignalException:
EnforcedStyle: semantic