rubocop-iknow 0.0.7 → 0.0.10

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3) hide show
  1. checksums.yaml +4 -4
  2. data/rubocop.yml +204 -109
  3. metadata +3 -3
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: cab74c8ba8cf2dc6274a65203c0e27ab58e687f038c5a8cdd1b2e1b692fd2a94
4
- data.tar.gz: 119c8bc5fa399b06873e550e124f8c5ae5c5043483f8f85297f459fb17dcbbd5
3
+ metadata.gz: eb6f366b0e1a2f83c5ef514743ea9c10f459747f726637e52147ca409d37b427
4
+ data.tar.gz: 22fdcef2d05cc5c9e7831b6cfff7320138081b9eeab7381729da92f0314f8fee
5
5
  SHA512:
6
- metadata.gz: 6baa63db33e31ee914f8f03df5e5a75867ca0b19dd8bdbb2de79dc94bbb1b81f1c7350aa2c016c7e6d709ff0fa641361be50f64cc9dc2f31b0b3151f92051eaf
7
- data.tar.gz: 9bb7effb6f4176f85e285de8ee675ae9ef2bf3d274e4cc7b7f11f0e6c6954ded24f98d2abfcbc1700ad0b6a486fe8e05e76dd83a1631e78c5b2cb841c2fd927b
6
+ metadata.gz: eaf65f18cb6bb6f87c4da15e51c095b07b60bb709628af78d11a2ca727559574358d3d5df045c71f714bd1693e7efad0598d4c42a731222f349663e5ac4d017e
7
+ data.tar.gz: a7d622e02ccc79467c17c8a71c8a0f438edad535ca8a78c1567d365fea1a1141acac7f0bd97094df2ff7155009fb51155efcabfc4c6e624460727707a9550159
data/rubocop.yml CHANGED
@@ -1,190 +1,285 @@
1
- ---
2
1
  AllCops:
3
2
  TargetRubyVersion: 2.5
4
3
  NewCops: enable
4
+
5
+ Layout/EmptyLineAfterMagicComment:
6
+ Severity: error
7
+
8
+ Layout/EmptyLinesAroundExceptionHandlingKeywords:
9
+ Enabled: false
10
+
11
+ Layout/FirstArgumentIndentation:
12
+ # This forbids indentation relative to the expression
13
+ Enabled: false
14
+
15
+ Layout/FirstHashElementIndentation:
16
+ # This one in particular forbids what Emacs does by default for multi-line
17
+ # hash entries
18
+ Enabled: false
19
+
20
+ Layout/HashAlignment:
21
+ EnforcedHashRocketStyle:
22
+ - table
23
+ - key
24
+ EnforcedColonStyle:
25
+ - table
26
+ - key
27
+
5
28
  Layout/LineLength:
6
29
  # Max: 100
7
30
  Enabled: false # Potentially bring this back later
8
- Metrics/BlockLength:
9
- Enabled: false
10
- Style/AsciiComments:
11
- Enabled: false
12
- Style/Documentation:
31
+
32
+ Layout/MultilineHashBraceLayout:
13
33
  Enabled: false
14
- Style/BlockDelimiters:
34
+
35
+ Layout/MultilineMethodCallBraceLayout:
36
+ # Rules for formatting hash and method call braces: let's avoid these unless we
37
+ # can find something unambiguously positive.
15
38
  Enabled: false
16
- Style/TernaryParentheses:
39
+
40
+ Layout/MultilineMethodCallIndentation:
41
+ # Cannot be configured to indent relative to expression.
17
42
  Enabled: false
18
- Style/RedundantReturn:
43
+
44
+ Layout/MultilineMethodDefinitionBraceLayout:
45
+ # None of their options are lovely
19
46
  Enabled: false
20
- Style/RedundantSelf:
47
+
48
+ Layout/SpaceInsideRangeLiteral:
21
49
  Enabled: false
22
- Style/GuardClause:
50
+
51
+ Layout/TrailingWhitespace:
52
+ Severity: error
53
+
54
+ Lint/AmbiguousBlockAssociation:
55
+ # In practise this rule seems overly restrictive for
56
+ # DSLs like RSpec that avoid parens.
23
57
  Enabled: false
24
- Style/IfUnlessModifier:
58
+
59
+ Lint/EmptyWhen:
25
60
  Enabled: false
26
- Style/WhileUntilModifier:
61
+
62
+ Lint/MissingSuper:
63
+ Severity: error
64
+
65
+ Lint/ParenthesesAsGroupedExpression:
27
66
  Enabled: false
28
- Style/RaiseArgs:
29
- EnforcedStyle: compact
30
- Style/RedundantException:
67
+
68
+ Lint/RaiseException:
69
+ Enabled: true
70
+
71
+ Lint/ShadowingOuterLocalVariable:
72
+ # I like this rule, but can see arguments against it
73
+ Enabled: true
74
+
75
+ Lint/StructNewOverride:
31
76
  Enabled: false
32
- Style/SpecialGlobalVars:
77
+
78
+ Lint/UnusedBlockArgument:
79
+ AllowUnusedKeywordArguments: true
80
+
81
+ Lint/UnusedMethodArgument:
82
+ AllowUnusedKeywordArguments: true
83
+ IgnoreEmptyMethods: true
84
+
85
+ Metrics/AbcSize:
33
86
  Enabled: false
34
- Style/EmptyCaseCondition:
87
+
88
+ Metrics/BlockLength:
35
89
  Enabled: false
36
- Style/RedundantCondition:
90
+
91
+ Metrics/ClassLength:
37
92
  Enabled: false
38
- Metrics/AbcSize:
93
+
94
+ Metrics/CyclomaticComplexity:
39
95
  Enabled: false
96
+
40
97
  Metrics/MethodLength:
41
98
  Enabled: false
42
- Metrics/CyclomaticComplexity:
99
+
100
+ Metrics/ModuleLength:
43
101
  Enabled: false
102
+
103
+ Metrics/ParameterLists:
104
+ Enabled: false
105
+
44
106
  Metrics/PerceivedComplexity:
45
107
  Enabled: false
46
- Metrics/ClassLength:
108
+
109
+ Naming/AccessorMethodName:
47
110
  Enabled: false
48
- Metrics/ModuleLength:
111
+
112
+ Naming/MethodParameterName:
49
113
  Enabled: false
50
- Style/Lambda:
114
+
115
+ Naming/PredicateName:
116
+ NamePrefix: [is_]
117
+
118
+ Naming/RescuedExceptionsVariableName:
51
119
  Enabled: false
52
- Style/LambdaCall:
120
+
121
+ Naming/VariableNumber:
53
122
  Enabled: false
54
- Style/MultilineBlockChain:
123
+
124
+ Style/AccessorGrouping:
55
125
  Enabled: false
56
- Style/WordArray:
126
+
127
+ Style/AsciiComments:
57
128
  Enabled: false
58
- Style/SymbolArray:
129
+
130
+ Style/BlockDelimiters:
59
131
  Enabled: false
60
- Style/PreferredHashMethods:
61
- EnforcedStyle: verbose
62
- Metrics/ParameterLists:
132
+
133
+ Style/ClassAndModuleChildren:
63
134
  Enabled: false
64
- Layout/MultilineMethodCallIndentation:
65
- # Cannot be configured to indent relative to expression.
135
+
136
+ Style/ClassVars:
137
+ # Class vars are usually bad practice. Not universally.
66
138
  Enabled: false
67
- Style/RescueModifier:
68
- # I can see valid uses for this but they're far and few between.
69
- # That said, nobody in our team is going to use one of these unless
70
- # it's a valid case
139
+
140
+ Style/CommentedKeyword:
71
141
  Enabled: false
72
- Style/ExplicitBlockArgument:
73
- # This goes too far by demanding expensive block allocation always
142
+
143
+ Style/Documentation:
74
144
  Enabled: false
75
- Lint/UnusedBlockArgument:
76
- AllowUnusedKeywordArguments: true
77
- Lint/UnusedMethodArgument:
78
- AllowUnusedKeywordArguments: true
79
- IgnoreEmptyMethods: true
80
- Lint/EmptyWhen:
145
+
146
+ Style/EmptyCaseCondition:
81
147
  Enabled: false
82
- Lint/RaiseException:
83
- Enabled: true
84
- Lint/StructNewOverride:
148
+
149
+ Style/EmptyElse:
85
150
  Enabled: false
86
- Style/ClassAndModuleChildren:
151
+
152
+ Style/ExplicitBlockArgument:
153
+ # This goes too far by demanding expensive block allocation always
87
154
  Enabled: false
88
- Style/NonNilCheck:
155
+
156
+ Style/FrozenStringLiteralComment:
157
+ Severity: error
158
+
159
+ Style/GuardClause:
160
+ # This is too prescriptive
89
161
  Enabled: false
162
+
163
+ Style/HashEachMethods:
164
+ Enabled: true
165
+
90
166
  Style/HashSyntax:
91
167
  # We explicitly choose to use rocket style syntax when the Hash is being used
92
168
  # to represent some other sort of data structure (trees, pairs, etc).
93
169
  Enabled: false
94
- Style/HashEachMethods:
95
- Enabled: true
170
+
96
171
  Style/HashTransformKeys:
97
172
  Enabled: true
173
+
98
174
  Style/HashTransformValues:
99
175
  Enabled: true
100
- Layout/FirstArgumentIndentation:
101
- # This forbids indentation relative to the expression
102
- Enabled: false
103
- Style/SafeNavigation:
104
- Enabled: false
105
- Layout/EmptyLinesAroundExceptionHandlingKeywords:
176
+
177
+ Style/IfUnlessModifier:
106
178
  Enabled: false
107
- Layout/SpaceInsideRangeLiteral:
179
+
180
+ Style/KeywordParametersOrder:
108
181
  Enabled: false
109
- Style/SymbolProc:
182
+
183
+ Style/Lambda:
184
+ Enabled: true
185
+ EnforcedStyle: literal
186
+
187
+ Style/LambdaCall:
188
+ # restricts foo.() syntax, which we favour
110
189
  Enabled: false
111
- Lint/ParenthesesAsGroupedExpression:
190
+
191
+ Style/MultilineBlockChain:
112
192
  Enabled: false
113
- Style/EmptyElse:
193
+
194
+ Style/MutableConstant:
195
+ Severity: error
196
+
197
+ Style/NonNilCheck:
114
198
  Enabled: false
199
+
115
200
  Style/NumericLiterals:
116
201
  Enabled: false
202
+
117
203
  Style/NumericPredicate:
118
204
  Enabled: false
119
- Style/TrailingCommaInArrayLiteral:
120
- EnforcedStyleForMultiline: consistent_comma
121
- Style/TrailingCommaInHashLiteral:
122
- EnforcedStyleForMultiline: comma
123
- Style/TrailingCommaInArguments:
124
- EnforcedStyleForMultiline: comma
125
- Style/TrailingUnderscoreVariable:
126
- # I think this does more harm than good by hiding the array destructuring
127
- Enabled: false
128
- Style/SymbolLiteral:
129
- Enabled: false
130
- Style/KeywordParametersOrder:
131
- Enabled: false
132
- Style/StringConcatenation:
205
+
206
+ Style/PreferredHashMethods:
207
+ EnforcedStyle: verbose
208
+
209
+ Style/RaiseArgs:
210
+ EnforcedStyle: compact
211
+
212
+ Style/RedundantCondition:
133
213
  Enabled: false
134
- Style/AccessorGrouping:
214
+
215
+ Style/RedundantException:
135
216
  Enabled: false
136
- Naming/AccessorMethodName:
217
+
218
+ Style/RedundantReturn:
219
+ # allow redundant return keyword where appropriate to convey meaning
137
220
  Enabled: false
138
- Naming/MethodParameterName:
221
+
222
+ Style/RedundantSelf:
223
+ # allow redundant self keyword where appropriate to convey meaning
139
224
  Enabled: false
140
- Naming/VariableNumber:
225
+
226
+ Style/RescueModifier:
227
+ # I can see valid uses for this but they're far and few between.
228
+ # That said, nobody in our team is going to use one of these unless
229
+ # it's a valid case
141
230
  Enabled: false
142
- Naming/PredicateName:
143
- NamePrefix: ['is_']
144
- Naming/RescuedExceptionsVariableName:
231
+
232
+ Style/SafeNavigation:
145
233
  Enabled: false
234
+
146
235
  Style/SingleLineMethods:
147
236
  Enabled: false
148
- Style/CommentedKeyword:
149
- Enabled: false
150
237
 
151
- Layout/HashAlignment:
152
- EnforcedHashRocketStyle:
153
- - table
154
- - key
155
- EnforcedColonStyle:
156
- - table
157
- - key
158
-
159
- Style/ClassVars:
160
- # Class vars are usually bad practice. Not universally.
238
+ Style/SpecialGlobalVars:
161
239
  Enabled: false
162
240
 
163
- Layout/MultilineMethodDefinitionBraceLayout:
164
- # None of their options are lovely
241
+ Style/StringConcatenation:
165
242
  Enabled: false
166
243
 
167
244
  Style/StringLiterals:
168
245
  Enabled: true
246
+ Severity: error
247
+
169
248
  Style/StringLiteralsInInterpolation:
170
249
  Enabled: true
250
+ Severity: error
171
251
 
172
- Lint/AmbiguousBlockAssociation:
173
- # In practise this rule seems overly restrictive for
174
- # DSLs like RSpec that avoid parens.
252
+ Style/SymbolArray:
175
253
  Enabled: false
176
254
 
177
- Lint/ShadowingOuterLocalVariable:
178
- # I like this rule, but can see arguments against it
255
+ Style/SymbolLiteral:
256
+ Enabled: false
257
+
258
+ Style/SymbolProc:
259
+ Enabled: false
260
+
261
+ Style/TernaryParentheses:
179
262
  Enabled: true
263
+ EnforcedStyle: require_parentheses_when_complex
180
264
 
181
- # Rules for formatting hash and method call braces: let's avoid these unless we
182
- # can find something unambiguously positive.
183
- Layout/MultilineMethodCallBraceLayout:
265
+ Style/TrailingCommaInArguments:
266
+ Severity: error
267
+ EnforcedStyleForMultiline: comma
268
+
269
+ Style/TrailingCommaInArrayLiteral:
270
+ Severity: error
271
+ EnforcedStyleForMultiline: consistent_comma
272
+
273
+ Style/TrailingCommaInHashLiteral:
274
+ Severity: error
275
+ EnforcedStyleForMultiline: comma
276
+
277
+ Style/TrailingUnderscoreVariable:
278
+ # I think this does more harm than good by hiding the array destructuring
184
279
  Enabled: false
185
- Layout/MultilineHashBraceLayout:
280
+
281
+ Style/WhileUntilModifier:
186
282
  Enabled: false
187
- Layout/FirstHashElementIndentation:
188
- # This one in particular forbids what Emacs does by default for multi-line
189
- # hash entries
283
+
284
+ Style/WordArray:
190
285
  Enabled: false
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rubocop-iknow
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.7
4
+ version: 0.0.10
5
5
  platform: ruby
6
6
  authors:
7
7
  - iKnow Team
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-10-08 00:00:00.000000000 Z
11
+ date: 2022-09-05 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description:
14
14
  email: edge@iknow.jp
@@ -36,7 +36,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
36
36
  - !ruby/object:Gem::Version
37
37
  version: '0'
38
38
  requirements: []
39
- rubygems_version: 3.0.3
39
+ rubygems_version: 3.0.3.1
40
40
  signing_key:
41
41
  specification_version: 4
42
42
  summary: Rubocop Configuration used with iKnow Projects