-
Notifications
You must be signed in to change notification settings - Fork 4
/
rubocop-core.yml
144 lines (101 loc) · 2.27 KB
/
rubocop-core.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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
Security:
Enabled: true
Security/IoMethods:
Enabled: true
Security/CompoundHash:
Enabled: true
# Prefer &&/|| over and/or.
Style/AndOr:
Enabled: true
Style/FrozenStringLiteralComment:
Enabled: true
# Use Ruby >= 1.9 syntax for hashes. Prefer { a: :b } over { :a => :b }.
Style/HashSyntax:
Enabled: true
EnforcedShorthandSyntax: either
# Defining a method with parameters needs parentheses.
Style/MethodDefParentheses:
Enabled: true
Style/SingleLineMethods:
Enabled: true
Style/Semicolon:
Enabled: true
AllowAsExpressionSeparator: true
Style/RedundantReturn:
Enabled: true
Style/GlobalVars:
Enabled: true
Severity: warning
Exclude:
- "lib/tasks/**/*"
- "script/**/*"
- "**/spec/**/*"
Style/InvertibleUnlessCondition:
Enabled: true
Style/NegatedUnless:
Enabled: true
Style/UnlessElse:
Enabled: true
Style/UnlessLogicalOperators:
Enabled: true
Lint/Debugger:
Enabled: true
# Use my_method(my_arg) not my_method( my_arg ) or my_method my_arg.
Lint/RequireParentheses:
Enabled: true
Lint/ShadowingOuterLocalVariable:
Enabled: true
Bundler/OrderedGems:
Enabled: false
Layout/LineLength:
Enabled: false
Lint/ParenthesesAsGroupedExpression:
Enabled: true
Lint/DuplicateMethods:
Enabled: true
Lint/RedundantWithIndex:
Enabled: true
Lint/RedundantRequireStatement:
Enabled: true
Lint/LiteralInInterpolation:
Enabled: true
Lint/RedundantStringCoercion:
Enabled: true
Lint/BooleanSymbol:
Enabled: true
AutoCorrect: false # it breaks the code
Lint/ShadowedArgument:
Enabled: true
Lint/RedundantCopDisableDirective:
Enabled: true
Lint/EmptyEnsure:
Enabled: true
Lint/RedundantWithObject:
Enabled: true
Lint/SelfAssignment:
Enabled: true
Lint/Void:
Enabled: true
Lint/UselessMethodDefinition:
Enabled: true
Lint/UnreachableCode:
Enabled: true
Lint/DeprecatedOpenSSLConstant:
Enabled: true
Lint/DisjunctiveAssignmentInConstructor:
Enabled: true
Lint/NonLocalExitFromIterator:
Enabled: true
Lint/DeprecatedClassMethods:
Enabled: true
Lint/SafeNavigationChain:
Enabled: true
Lint/RedundantSafeNavigation:
Enabled: true
Lint/EmptyConditionalBody:
Enabled: true
AutoCorrect: false # it can break the code
Lint/SafeNavigationConsistency:
Enabled: true
Lint/OrAssignmentToConstant:
Enabled: true