rubocop-nosolosoftware 1.1.0 → 1.2.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +7 -0
- data/rubocop-lint.yml +8 -0
- data/rubocop-style.yml +4 -0
- metadata +5 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3a56547c0efe7d21679b856918547632944ae698bded671be0130792dc504bc9
|
4
|
+
data.tar.gz: 3af51a4cd0e1da30fcd07ebc4e30e58ed02a5b9bd51c9b70cb2531aa6bf92dd7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b1842c650a3c41b852b195ed69533fa1c28dc948b67a05bf7a16c70142239d4adced938adf342376be53dc854324363eb151a8b04bf49622ce0fee6f672c2adf
|
7
|
+
data.tar.gz: cd442144b1514ef18a35480105b3f89f739488214cdd97710de59e8a2a8d3bd81696f8a9d3b9783c0f533fc5c6b4d520e6eae13db3a406dc05f185c2d5984aae
|
data/CHANGELOG.md
CHANGED
@@ -5,6 +5,13 @@ All notable changes to this project will be documented in this file.
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
7
7
|
|
8
|
+
## 1.2.0 - 2020-11-13
|
9
|
+
### Added
|
10
|
+
- Added new rules introduced in the last version.
|
11
|
+
- Lint/DuplicateBranch (1.3)
|
12
|
+
- Lint/EmptyClass (1.3)
|
13
|
+
- Style/NilLambda (1.3)
|
14
|
+
|
8
15
|
## 1.1.0 - 2020-11-13
|
9
16
|
### Added
|
10
17
|
- Added new rules introduced in the last version.
|
data/rubocop-lint.yml
CHANGED
@@ -31,3 +31,11 @@ Lint/RedundantSafeNavigation:
|
|
31
31
|
# https://docs.rubocop.org/rubocop/cops_lint.html#lintnoreturninbeginendblocks
|
32
32
|
Lint/NoReturnInBeginEndBlocks:
|
33
33
|
Enabled: true
|
34
|
+
|
35
|
+
# https://docs.rubocop.org/rubocop/cops_lint.html#lintduplicatebranch
|
36
|
+
Lint/DuplicateBranch:
|
37
|
+
Enabled: true
|
38
|
+
|
39
|
+
# https://docs.rubocop.org/rubocop/cops_lint.html#lintemptyclass
|
40
|
+
Lint/EmptyClass:
|
41
|
+
Enabled: true
|
data/rubocop-style.yml
CHANGED
@@ -56,3 +56,7 @@ Style/CollectionCompact:
|
|
56
56
|
# https://docs.rubocop.org/rubocop/cops_style.html#stylenegatedifelsecondition
|
57
57
|
Style/NegatedIfElseCondition:
|
58
58
|
Enabled: true
|
59
|
+
|
60
|
+
# https://docs.rubocop.org/rubocop/cops_style.html#stylenillambda
|
61
|
+
Style/NilLambda:
|
62
|
+
Enabled: true
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rubocop-nosolosoftware
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.2.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Javier Aranda
|
@@ -16,14 +16,14 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - "~>"
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: '1.
|
19
|
+
version: '1.3'
|
20
20
|
type: :runtime
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
24
|
- - "~>"
|
25
25
|
- !ruby/object:Gem::Version
|
26
|
-
version: '1.
|
26
|
+
version: '1.3'
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: rubocop-faker
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
@@ -125,8 +125,8 @@ homepage: https://github.com/nosolosoftware/rubocop-nosolosoftware
|
|
125
125
|
licenses:
|
126
126
|
- MIT
|
127
127
|
metadata:
|
128
|
-
source_code_uri: https://github.com/nosolosoftware/rubocop-nosolosoftware/tree/v1.
|
129
|
-
changelog_uri: https://github.com/nosolosoftware/rubocop-nosolosoftware/blob/v1.
|
128
|
+
source_code_uri: https://github.com/nosolosoftware/rubocop-nosolosoftware/tree/v1.2.0
|
129
|
+
changelog_uri: https://github.com/nosolosoftware/rubocop-nosolosoftware/blob/v1.2.0/CHANGELOG.md
|
130
130
|
homepage_uri: https://github.com/nosolosoftware/rubocop-nosolosoftware
|
131
131
|
post_install_message:
|
132
132
|
rdoc_options:
|