ergomentum_rubocop 0.13.0 → 0.14.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/config/default_shared.yml +91 -0
- data/lib/ergomentum_rubocop/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5ac6df169014e183533d84491ed88824f88f553e34089f055b09dbc4a244ad58
|
4
|
+
data.tar.gz: 5f31e76593609f7b32d679270b89d414d3f439780d5d738eb31afc1168f7062c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f8836cae2fb70bd89fd4dba47d82dfff3976baadb99dc189d1fa9acc2125ae738663f89bc81b1dca374655ea8b98b7fc5f46befc10d076cbc8013288c8bc8d31
|
7
|
+
data.tar.gz: c5c616f41a976750899ad521818e6c1113de04004452c965f45272fabe5f5005e9c51f4b5d745b9ebca9ebbdcca8febbc02d7ff18c972fb653cb22a1269516bf
|
data/config/default_shared.yml
CHANGED
@@ -1,10 +1,43 @@
|
|
1
1
|
---
|
2
2
|
require:
|
3
3
|
- rubocop-performance
|
4
|
+
- rubocop-capybara
|
5
|
+
- rubocop-factory_bot
|
6
|
+
- rubocop-rspec
|
4
7
|
AllCops:
|
5
8
|
Exclude:
|
6
9
|
- vendor/**/*
|
7
10
|
- node_modules/**/*
|
11
|
+
Capybara/ClickLinkOrButtonStyle: # new in 2.19
|
12
|
+
Enabled: true
|
13
|
+
Capybara/MatchStyle: # new in 2.17
|
14
|
+
Enabled: true
|
15
|
+
Capybara/NegationMatcher: # new in 2.14
|
16
|
+
Enabled: true
|
17
|
+
Capybara/SpecificActions: # new in 2.14
|
18
|
+
Enabled: true
|
19
|
+
Capybara/SpecificFinders: # new in 2.13
|
20
|
+
Enabled: true
|
21
|
+
Capybara/SpecificMatcher: # new in 2.12
|
22
|
+
Enabled: true
|
23
|
+
Capybara/RSpec/HaveSelector: # new in 2.19
|
24
|
+
Enabled: true
|
25
|
+
Capybara/RSpec/PredicateMatcher: # new in 2.19
|
26
|
+
Enabled: true
|
27
|
+
FactoryBot/AssociationStyle: # new in 2.23
|
28
|
+
Enabled: true
|
29
|
+
FactoryBot/ConsistentParenthesesStyle: # new in 2.14
|
30
|
+
Enabled: true
|
31
|
+
FactoryBot/FactoryAssociationWithStrategy: # new in 2.23
|
32
|
+
Enabled: true
|
33
|
+
FactoryBot/FactoryNameStyle: # new in 2.16
|
34
|
+
Enabled: true
|
35
|
+
FactoryBot/IdSequence: # new in <<next>>
|
36
|
+
Enabled: true
|
37
|
+
FactoryBot/RedundantFactoryOption: # new in 2.23
|
38
|
+
Enabled: true
|
39
|
+
FactoryBot/SyntaxMethods: # new in 2.7
|
40
|
+
Enabled: true
|
8
41
|
Gemspec/DeprecatedAttributeAssignment: # new in 1.30
|
9
42
|
Enabled: true
|
10
43
|
Gemspec/DevelopmentDependencies: # new in 1.44
|
@@ -171,6 +204,64 @@ Performance/StringInclude:
|
|
171
204
|
Enabled: true
|
172
205
|
Performance/Sum:
|
173
206
|
Enabled: true
|
207
|
+
RSpec/BeEmpty: # new in 2.20
|
208
|
+
Enabled: true
|
209
|
+
RSpec/BeEq: # new in 2.9.0
|
210
|
+
Enabled: true
|
211
|
+
RSpec/BeNil: # new in 2.9.0
|
212
|
+
Enabled: true
|
213
|
+
RSpec/ChangeByZero: # new in 2.11
|
214
|
+
Enabled: true
|
215
|
+
RSpec/ContainExactly: # new in 2.19
|
216
|
+
Enabled: true
|
217
|
+
RSpec/DuplicatedMetadata: # new in 2.16
|
218
|
+
Enabled: true
|
219
|
+
RSpec/EmptyMetadata: # new in 2.24
|
220
|
+
Enabled: true
|
221
|
+
RSpec/Eq: # new in 2.24
|
222
|
+
Enabled: true
|
223
|
+
RSpec/ExcessiveDocstringSpacing: # new in 2.5
|
224
|
+
Enabled: true
|
225
|
+
RSpec/IdenticalEqualityAssertion: # new in 2.4
|
226
|
+
Enabled: true
|
227
|
+
RSpec/IndexedLet: # new in 2.20
|
228
|
+
Enabled: true
|
229
|
+
RSpec/MatchArray: # new in 2.19
|
230
|
+
Enabled: true
|
231
|
+
RSpec/MetadataStyle: # new in 2.24
|
232
|
+
Enabled: true
|
233
|
+
RSpec/NoExpectationExample: # new in 2.13
|
234
|
+
Enabled: true
|
235
|
+
RSpec/PendingWithoutReason: # new in 2.16
|
236
|
+
Enabled: true
|
237
|
+
RSpec/ReceiveMessages: # new in 2.23
|
238
|
+
Enabled: true
|
239
|
+
RSpec/RedundantAround: # new in 2.19
|
240
|
+
Enabled: true
|
241
|
+
RSpec/SkipBlockInsideExample: # new in 2.19
|
242
|
+
Enabled: true
|
243
|
+
RSpec/SortMetadata: # new in 2.14
|
244
|
+
Enabled: true
|
245
|
+
RSpec/SpecFilePathFormat: # new in 2.24
|
246
|
+
Enabled: true
|
247
|
+
RSpec/SpecFilePathSuffix: # new in 2.24
|
248
|
+
Enabled: true
|
249
|
+
RSpec/SubjectDeclaration: # new in 2.5
|
250
|
+
Enabled: true
|
251
|
+
RSpec/VerifiedDoubleReference: # new in 2.10.0
|
252
|
+
Enabled: true
|
253
|
+
RSpec/Rails/AvoidSetupHook: # new in 2.4
|
254
|
+
Enabled: true
|
255
|
+
RSpec/Rails/HaveHttpStatus: # new in 2.12
|
256
|
+
Enabled: true
|
257
|
+
RSpec/Rails/InferredSpecType: # new in 2.14
|
258
|
+
Enabled: true
|
259
|
+
RSpec/Rails/MinitestAssertions: # new in 2.17
|
260
|
+
Enabled: true
|
261
|
+
RSpec/Rails/NegationBeValid: # new in 2.23
|
262
|
+
Enabled: true
|
263
|
+
RSpec/Rails/TravelAround: # new in 2.19
|
264
|
+
Enabled: true
|
174
265
|
Security/CompoundHash: # new in 1.28
|
175
266
|
Enabled: true
|
176
267
|
Security/IoMethods: # new in 1.22
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: ergomentum_rubocop
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.14.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- ERGOMENTUM
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-12-
|
11
|
+
date: 2023-12-29 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rubocop
|