meowcop 2.13.0 → 2.14.0
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.
- checksums.yaml +4 -4
- data/README.md +0 -6
- data/config/rubocop.yml +10 -0
- data/examples/.rubocop.yml +0 -4
- data/lib/meowcop/version.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ab2f5100dde0dd7677f41d91aff45144b69610a4f5a62eb7cdfcde0c6bc9ed1a
|
|
4
|
+
data.tar.gz: a60a8bd30c7f1a324c774c6d97aca3607d4de0b8fc3bf1224def8bced8f932ba
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b496f4c92960c565e096f6356ee006e9739196496810807a4bfe3a1aa03c91ca8b165935199c7c8bcddfae3adb9766aec5eb9dfd2876370f6d548321eb4d53ad
|
|
7
|
+
data.tar.gz: a9380cf21cfdc68c27d7d6d28c3ad1432f3dd3c8a7f4d62b9413d4b1e98729eef6c88e71795d8d7bc66282734e18e86ad2816e9b7fc9269d5c367095190bac2c
|
data/README.md
CHANGED
|
@@ -49,10 +49,6 @@ inherit_gem:
|
|
|
49
49
|
meowcop:
|
|
50
50
|
- config/rubocop.yml
|
|
51
51
|
|
|
52
|
-
# Modify the version if you don't use MRI 2.6.
|
|
53
|
-
AllCops:
|
|
54
|
-
TargetRubyVersion: 2.6
|
|
55
|
-
|
|
56
52
|
# You can customize RuboCop settings.
|
|
57
53
|
# For example.
|
|
58
54
|
# Style/FrozenStringLiteralComment:
|
|
@@ -60,8 +56,6 @@ AllCops:
|
|
|
60
56
|
# EnforcedStyle: always
|
|
61
57
|
```
|
|
62
58
|
|
|
63
|
-
### Example
|
|
64
|
-
|
|
65
59
|
See this [example](examples/.rubocop.yml).
|
|
66
60
|
|
|
67
61
|
## Usage
|
data/config/rubocop.yml
CHANGED
|
@@ -298,6 +298,8 @@ Style/ClassCheck:
|
|
|
298
298
|
Enabled: false
|
|
299
299
|
Style/ClassMethods:
|
|
300
300
|
Enabled: false
|
|
301
|
+
Style/ClassMethodsDefinitions:
|
|
302
|
+
Enabled: false
|
|
301
303
|
Style/ClassVars:
|
|
302
304
|
Enabled: false
|
|
303
305
|
Style/CollectionMethods:
|
|
@@ -306,6 +308,8 @@ Style/ColonMethodCall:
|
|
|
306
308
|
Enabled: false
|
|
307
309
|
Style/ColonMethodDefinition:
|
|
308
310
|
Enabled: false
|
|
311
|
+
Style/CombinableLoops:
|
|
312
|
+
Enabled: false
|
|
309
313
|
Style/CommandLiteral:
|
|
310
314
|
Enabled: false
|
|
311
315
|
Style/CommentAnnotation:
|
|
@@ -412,6 +416,8 @@ Style/InverseMethods:
|
|
|
412
416
|
Enabled: false
|
|
413
417
|
Style/IpAddresses:
|
|
414
418
|
Enabled: false
|
|
419
|
+
Style/KeywordParametersOrder:
|
|
420
|
+
Enabled: false
|
|
415
421
|
Style/Lambda:
|
|
416
422
|
Enabled: false
|
|
417
423
|
Style/LambdaCall:
|
|
@@ -542,6 +548,8 @@ Style/RedundantReturn:
|
|
|
542
548
|
Enabled: false
|
|
543
549
|
Style/RedundantSelf:
|
|
544
550
|
Enabled: false
|
|
551
|
+
Style/RedundantSelfAssignment:
|
|
552
|
+
Enabled: false
|
|
545
553
|
Style/RedundantSort:
|
|
546
554
|
Enabled: false
|
|
547
555
|
Style/RedundantSortBy:
|
|
@@ -574,6 +582,8 @@ Style/SingleLineMethods:
|
|
|
574
582
|
Enabled: false
|
|
575
583
|
Style/SlicingWithRange:
|
|
576
584
|
Enabled: false
|
|
585
|
+
Style/SoleNestedConditional:
|
|
586
|
+
Enabled: false
|
|
577
587
|
Style/SpecialGlobalVars:
|
|
578
588
|
Enabled: false
|
|
579
589
|
Style/StabbyLambdaParentheses:
|
data/examples/.rubocop.yml
CHANGED
data/lib/meowcop/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: meowcop
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.
|
|
4
|
+
version: 2.14.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Sleeek Corporation
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2020-08
|
|
11
|
+
date: 2020-09-08 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rubocop
|
|
@@ -16,7 +16,7 @@ dependencies:
|
|
|
16
16
|
requirements:
|
|
17
17
|
- - ">="
|
|
18
18
|
- !ruby/object:Gem::Version
|
|
19
|
-
version: 0.
|
|
19
|
+
version: 0.90.0
|
|
20
20
|
- - "<"
|
|
21
21
|
- !ruby/object:Gem::Version
|
|
22
22
|
version: 1.0.0
|
|
@@ -26,7 +26,7 @@ dependencies:
|
|
|
26
26
|
requirements:
|
|
27
27
|
- - ">="
|
|
28
28
|
- !ruby/object:Gem::Version
|
|
29
|
-
version: 0.
|
|
29
|
+
version: 0.90.0
|
|
30
30
|
- - "<"
|
|
31
31
|
- !ruby/object:Gem::Version
|
|
32
32
|
version: 1.0.0
|