-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy path.rubocop_todo.yml
More file actions
130 lines (130 loc) · 2.87 KB
/
.rubocop_todo.yml
File metadata and controls
130 lines (130 loc) · 2.87 KB
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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
Metrics/ClassLength:
Enabled: false
Metrics/MethodLength:
Enabled: false
Metrics/AbcSize:
Enabled: false
Layout/SpaceBeforeBlockBraces:
Enabled: true
EnforcedStyle: no_space
Layout/SpaceInsideBlockBraces:
Enabled: true
EnforcedStyle: no_space
Layout/SpaceAroundBlockParameters:
Enabled: true
EnforcedStyleInsidePipes: no_space
Layout/SpaceInsideHashLiteralBraces:
Enabled: true
EnforcedStyle: no_space
Layout/MultilineHashBraceLayout:
Enabled: true
Layout/MultilineArrayBraceLayout:
Enabled: true
Layout/MultilineMethodArgumentLineBreaks:
Enabled: false
Layout/MultilineArrayLineBreaks:
Enabled: false
Layout/FirstHashElementLineBreak:
Enabled: true
Layout/FirstArrayElementLineBreak:
Enabled: false
Layout/MultilineHashKeyLineBreaks:
Enabled: false
Layout/MultilineMethodCallBraceLayout:
Enabled: true
Style/IfUnlessModifier:
Enabled: true
Style/RescueModifier:
Enabled: false
Style/Lambda:
Enabled: false
Style/CommentedKeyword:
Enabled: true
Style/NegatedIf:
Enabled: false
Style/SingleLineMethods:
Enabled: false
Style/RedundantReturn:
Enabled: false
Style/StringConcatenation:
Enabled: true
Style/StderrPuts:
Enabled: true
Metrics/BlockLength:
Enabled: false
Layout/SpaceAroundEqualsInParameterDefault:
Enabled: true
Style/Documentation:
Enabled: false
Metrics/CyclomaticComplexity:
Enabled: false
Layout/DotPosition:
Enabled: true
Layout/AssignmentIndentation:
Enabled: true
Layout/SpaceAroundOperators:
Enabled: true
Layout/EmptyLinesAroundAttributeAccessor:
Enabled: true
Layout/LeadingCommentSpace:
Enabled: true
Layout/FirstHashElementIndentation:
Enabled: true
#Layout/EmptyLineAfterGuardClause:
# Enabled: true
#Layout/HashAlignment:
# Enabled: true
Layout/CaseIndentation:
Enabled: true
Layout/SpaceAfterSemicolon:
Enabled: true
Layout/FirstArgumentIndentation:
Enabled: true
Style/WordArray:
Enabled: true
EnforcedStyle: percent
Style/SymbolArray:
Enabled: true
EnforcedStyle: percent
Style/PreferredHashMethods:
Enabled: true
Style/CommentAnnotation:
Enabled: true
Style/RegexpLiteral:
Enabled: true
AllowInnerSlashes: false
Style/Semicolon:
Enabled: true
Style/HashEachMethods:
Enabled: true
Style/SafeNavigation:
Enabled: true
Style/RedundantBegin:
Enabled: true
Layout/ArgumentAlignment:
Enabled: true
Layout/MultilineOperationIndentation:
Enabled: true
EnforcedStyle: indented
Style/LambdaCall:
Enabled: true
Style/MethodCallWithoutArgsParentheses:
Enabled: true
Layout/EmptyLineAfterMagicComment:
Enabled: true
Style/ClassAndModuleChildren:
Enabled: true
Lint/DuplicateBranch: # (new in 1.3)
Enabled: true
Lint/EmptyClass: # (new in 1.3)
Enabled: true
Style/DocumentDynamicEvalDefinition: # (new in 1.1)
Enabled: true
Style/NegatedIfElseCondition: # (new in 1.2)
Enabled: true
Style/NegatedWhile:
Enabled: true
Security/Eval:
Enabled: true
Naming/PredicateMethod:
Enabled: false