-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy path.rubocop_todo.yml
124 lines (124 loc) · 2.73 KB
/
.rubocop_todo.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
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
Metrics/ClassLength:
Enabled: false
Metrics/MethodLength:
Enabled: false
Metrics/AbcSize:
Enabled: false
Layout/SpaceBeforeBlockBraces:
Enabled: false
Layout/SpaceInsideBlockBraces:
Enabled: false
Layout/SpaceAroundBlockParameters:
Enabled: false
Layout/SpaceInsideHashLiteralBraces:
Enabled: false
Layout/MultilineHashBraceLayout:
Enabled: false
Layout/MultilineArrayBraceLayout:
Enabled: false
Layout/MultilineMethodArgumentLineBreaks:
Enabled: false
Layout/MultilineArrayLineBreaks:
Enabled: false
Layout/FirstHashElementLineBreak:
Enabled: false
Layout/FirstArrayElementLineBreak:
Enabled: false
Layout/MultilineHashKeyLineBreaks:
Enabled: false
Layout/MultilineMethodCallBraceLayout:
Enabled: false
Style/IfUnlessModifier:
Enabled: false
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: false
Style/StderrPuts:
Enabled: false
Metrics/BlockLength:
Enabled: false
Layout/SpaceAroundEqualsInParameterDefault:
Enabled: false
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