standard-rubocop-lts 1.0.4 → 1.0.5
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- checksums.yaml.gz.sig +0 -0
- data/CHANGELOG.md +9 -1
- data/README.md +9 -6
- data/config/ruby-1.8.yml +4 -4
- data/config/ruby-1.9.yml +13 -0
- data/config/ruby-2.0.yml +13 -0
- data/config/ruby-2.1.yml +13 -0
- data/config/ruby-2.2.yml +13 -0
- data/config/ruby-2.3.yml +13 -0
- data/config/ruby-2.4.yml +14 -1
- data/config/ruby-2.5.yml +13 -0
- data/config/ruby-2.6.yml +13 -0
- data/config/ruby-2.7.yml +13 -0
- data/config/ruby-3.0.yml +13 -0
- data/config/ruby-3.1.yml +13 -0
- data/config/ruby-3.2.yml +13 -0
- data/config/ruby-3.3.yml +13 -0
- data/lib/standard/rubocop/lts/version.rb +1 -1
- data.tar.gz.sig +6 -2
- metadata +4 -4
- metadata.gz.sig +0 -0
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: dab86808ecdb1b134185591f86073a4b4b7628b0629793f5b93d4387e323b262
|
4
|
+
data.tar.gz: 0a9c2342cb8a386dc97442b8a3bec8ae80b230ff0b10301d2e9fdc16db4f43d5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2b2acb57b6c225ee9b77d0b324a6a1e64a02585e7c4eaf781c5f033a21fb3e0449ff3abce650ec911613c01ff8e9eb9a458a24fa5741e53cc3da2c5f8e75a2c5
|
7
|
+
data.tar.gz: a97404ee901c9f3585bbdb4e20f8a678b25727585b7d439a29c3d33164951a72ed016828bfc68476749f4e16d761f376e4a635d4013aa83ee560b1361fc040cc
|
checksums.yaml.gz.sig
CHANGED
Binary file
|
data/CHANGELOG.md
CHANGED
@@ -10,6 +10,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
10
10
|
### Fixed
|
11
11
|
### Removed
|
12
12
|
|
13
|
+
## [1.0.5] 2023-06-03
|
14
|
+
### Fixed
|
15
|
+
- require deps for configs 1.9 - 3.3
|
16
|
+
|
13
17
|
## [1.0.4] 2023-06-03
|
14
18
|
### Fixed
|
15
19
|
- rubocop-shopify > standard gem family of rules
|
@@ -56,6 +60,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
56
60
|
### Added
|
57
61
|
- Initial release
|
58
62
|
|
59
|
-
[Unreleased]: https://gitlab.com/rubocop-lts/standard-rubocop-lts/-/compare/v1.0.
|
63
|
+
[Unreleased]: https://gitlab.com/rubocop-lts/standard-rubocop-lts/-/compare/v1.0.5...HEAD
|
64
|
+
[1.0.5]: https://gitlab.com/rubocop-lts/standard-rubocop-lts/-/compare/v1.0.4...v1.0.5
|
65
|
+
[1.0.4]: https://gitlab.com/rubocop-lts/standard-rubocop-lts/-/compare/v1.0.3...v1.0.4
|
66
|
+
[1.0.3]: https://gitlab.com/rubocop-lts/standard-rubocop-lts/-/compare/v1.0.2...v1.0.3
|
67
|
+
[1.0.2]: https://gitlab.com/rubocop-lts/standard-rubocop-lts/-/compare/v1.0.1...v1.0.2
|
60
68
|
[1.0.1]: https://gitlab.com/rubocop-lts/standard-rubocop-lts/-/compare/v1.0.0...v1.0.1
|
61
69
|
[1.0.0]: https://gitlab.com/rubocop-lts/standard-rubocop-lts/-/compare/0c0f82c0eeda184afb5c2c7a3d6b43c10f2d4c1c...v1.0.0
|
data/README.md
CHANGED
@@ -161,29 +161,32 @@ inherit_gem:
|
|
161
161
|
<details>
|
162
162
|
<summary>What will this do for me?</summary>
|
163
163
|
|
164
|
-
Among other settings specific to your chosen minimum version of ruby,
|
164
|
+
Among other settings specific to your chosen minimum version of ruby,
|
165
|
+
the above _effectively_ results in the following config (& more):
|
165
166
|
|
166
167
|
```yaml
|
167
|
-
# We want Exclude directives from different
|
168
|
+
# We want Exclude and Include directives from different
|
168
169
|
# config files to get merged, not overwritten
|
169
170
|
inherit_mode:
|
170
171
|
merge:
|
171
172
|
- Exclude
|
173
|
+
- Include
|
172
174
|
|
173
175
|
require:
|
174
|
-
- rubocop-performance
|
175
176
|
- standard
|
176
177
|
- standard-performance
|
177
178
|
- standard-custom
|
179
|
+
- rubocop-performance
|
178
180
|
|
181
|
+
# Load basic rules for this version of Ruby from standard.
|
179
182
|
# Rules are overridden in a LIFO stack.
|
180
183
|
# If rubocop-performance is loaded first, and standard-performance after it,
|
181
184
|
# then rubocop-performance's rules will take precedence.
|
182
185
|
# This is the opposite of what you might expect.
|
183
|
-
# Below: standard's
|
186
|
+
# Below: standard's rules override rubocop-performance's (mostly disabling rules)
|
184
187
|
inherit_gem:
|
185
|
-
standard: config/
|
186
|
-
standard-performance: config/
|
188
|
+
standard: config/ruby-1.8.yml
|
189
|
+
standard-performance: config/ruby-1.8.yml
|
187
190
|
standard-custom: config/base.yml
|
188
191
|
rubocop-performance: config/default.yml
|
189
192
|
|
data/config/ruby-1.8.yml
CHANGED
@@ -1,7 +1,3 @@
|
|
1
|
-
inherit_from:
|
2
|
-
- ./base.yml
|
3
|
-
- ./internal/ruby-1.8.yml
|
4
|
-
|
5
1
|
# We want Exclude and Include directives from different
|
6
2
|
# config files to get merged, not overwritten
|
7
3
|
inherit_mode:
|
@@ -9,6 +5,10 @@ inherit_mode:
|
|
9
5
|
- Exclude
|
10
6
|
- Include
|
11
7
|
|
8
|
+
inherit_from:
|
9
|
+
- ./base.yml
|
10
|
+
- ./internal/ruby-1.8.yml
|
11
|
+
|
12
12
|
require:
|
13
13
|
- standard
|
14
14
|
- standard-performance
|
data/config/ruby-1.9.yml
CHANGED
@@ -1,7 +1,20 @@
|
|
1
|
+
# We want Exclude and Include directives from different
|
2
|
+
# config files to get merged, not overwritten
|
3
|
+
inherit_mode:
|
4
|
+
merge:
|
5
|
+
- Exclude
|
6
|
+
- Include
|
7
|
+
|
1
8
|
inherit_from:
|
2
9
|
- ./base.yml
|
3
10
|
- ./internal/ruby-1.9.yml
|
4
11
|
|
12
|
+
require:
|
13
|
+
- standard
|
14
|
+
- standard-performance
|
15
|
+
- standard-custom
|
16
|
+
- rubocop-performance
|
17
|
+
|
5
18
|
# Load basic rules for this version of Ruby from standard.
|
6
19
|
# Rules are overridden in a LIFO stack.
|
7
20
|
# If rubocop-performance is loaded first, and standard-performance after it,
|
data/config/ruby-2.0.yml
CHANGED
@@ -1,7 +1,20 @@
|
|
1
|
+
# We want Exclude and Include directives from different
|
2
|
+
# config files to get merged, not overwritten
|
3
|
+
inherit_mode:
|
4
|
+
merge:
|
5
|
+
- Exclude
|
6
|
+
- Include
|
7
|
+
|
1
8
|
inherit_from:
|
2
9
|
- ./base.yml
|
3
10
|
- ./internal/ruby-2.0.yml
|
4
11
|
|
12
|
+
require:
|
13
|
+
- standard
|
14
|
+
- standard-performance
|
15
|
+
- standard-custom
|
16
|
+
- rubocop-performance
|
17
|
+
|
5
18
|
# Load basic rules for this version of Ruby from standard.
|
6
19
|
# Rules are overridden in a LIFO stack.
|
7
20
|
# If rubocop-performance is loaded first, and standard-performance after it,
|
data/config/ruby-2.1.yml
CHANGED
@@ -1,7 +1,20 @@
|
|
1
|
+
# We want Exclude and Include directives from different
|
2
|
+
# config files to get merged, not overwritten
|
3
|
+
inherit_mode:
|
4
|
+
merge:
|
5
|
+
- Exclude
|
6
|
+
- Include
|
7
|
+
|
1
8
|
inherit_from:
|
2
9
|
- ./base.yml
|
3
10
|
- ./internal/ruby-2.1.yml
|
4
11
|
|
12
|
+
require:
|
13
|
+
- standard
|
14
|
+
- standard-performance
|
15
|
+
- standard-custom
|
16
|
+
- rubocop-performance
|
17
|
+
|
5
18
|
# Load basic rules for this version of Ruby from standard.
|
6
19
|
# Rules are overridden in a LIFO stack.
|
7
20
|
# If rubocop-performance is loaded first, and standard-performance after it,
|
data/config/ruby-2.2.yml
CHANGED
@@ -1,7 +1,20 @@
|
|
1
|
+
# We want Exclude and Include directives from different
|
2
|
+
# config files to get merged, not overwritten
|
3
|
+
inherit_mode:
|
4
|
+
merge:
|
5
|
+
- Exclude
|
6
|
+
- Include
|
7
|
+
|
1
8
|
inherit_from:
|
2
9
|
- ./base.yml
|
3
10
|
- ./internal/ruby-2.2.yml
|
4
11
|
|
12
|
+
require:
|
13
|
+
- standard
|
14
|
+
- standard-performance
|
15
|
+
- standard-custom
|
16
|
+
- rubocop-performance
|
17
|
+
|
5
18
|
# Load basic rules for this version of Ruby from standard.
|
6
19
|
# Rules are overridden in a LIFO stack.
|
7
20
|
# If rubocop-performance is loaded first, and standard-performance after it,
|
data/config/ruby-2.3.yml
CHANGED
@@ -1,7 +1,20 @@
|
|
1
|
+
# We want Exclude and Include directives from different
|
2
|
+
# config files to get merged, not overwritten
|
3
|
+
inherit_mode:
|
4
|
+
merge:
|
5
|
+
- Exclude
|
6
|
+
- Include
|
7
|
+
|
1
8
|
inherit_from:
|
2
9
|
- ./base.yml
|
3
10
|
- ./internal/ruby-2.3.yml
|
4
11
|
|
12
|
+
require:
|
13
|
+
- standard
|
14
|
+
- standard-performance
|
15
|
+
- standard-custom
|
16
|
+
- rubocop-performance
|
17
|
+
|
5
18
|
# Load basic rules for this version of Ruby from standard.
|
6
19
|
# Rules are overridden in a LIFO stack.
|
7
20
|
# If rubocop-performance is loaded first, and standard-performance after it,
|
data/config/ruby-2.4.yml
CHANGED
@@ -1,6 +1,19 @@
|
|
1
|
+
# We want Exclude and Include directives from different
|
2
|
+
# config files to get merged, not overwritten
|
3
|
+
inherit_mode:
|
4
|
+
merge:
|
5
|
+
- Exclude
|
6
|
+
- Include
|
7
|
+
|
1
8
|
inherit_from:
|
2
9
|
- ./base.yml
|
3
|
-
- ./internal/ruby-2.
|
10
|
+
- ./internal/ruby-2.4.yml
|
11
|
+
|
12
|
+
require:
|
13
|
+
- standard
|
14
|
+
- standard-performance
|
15
|
+
- standard-custom
|
16
|
+
- rubocop-performance
|
4
17
|
|
5
18
|
# Load basic rules for this version of Ruby from standard.
|
6
19
|
# Rules are overridden in a LIFO stack.
|
data/config/ruby-2.5.yml
CHANGED
@@ -1,7 +1,20 @@
|
|
1
|
+
# We want Exclude and Include directives from different
|
2
|
+
# config files to get merged, not overwritten
|
3
|
+
inherit_mode:
|
4
|
+
merge:
|
5
|
+
- Exclude
|
6
|
+
- Include
|
7
|
+
|
1
8
|
inherit_from:
|
2
9
|
- ./base.yml
|
3
10
|
- ./internal/ruby-2.5.yml
|
4
11
|
|
12
|
+
require:
|
13
|
+
- standard
|
14
|
+
- standard-performance
|
15
|
+
- standard-custom
|
16
|
+
- rubocop-performance
|
17
|
+
|
5
18
|
# Load basic rules for this version of Ruby from standard.
|
6
19
|
# Rules are overridden in a LIFO stack.
|
7
20
|
# If rubocop-performance is loaded first, and standard-performance after it,
|
data/config/ruby-2.6.yml
CHANGED
@@ -1,7 +1,20 @@
|
|
1
|
+
# We want Exclude and Include directives from different
|
2
|
+
# config files to get merged, not overwritten
|
3
|
+
inherit_mode:
|
4
|
+
merge:
|
5
|
+
- Exclude
|
6
|
+
- Include
|
7
|
+
|
1
8
|
inherit_from:
|
2
9
|
- ./base.yml
|
3
10
|
- ./internal/ruby-2.6.yml
|
4
11
|
|
12
|
+
require:
|
13
|
+
- standard
|
14
|
+
- standard-performance
|
15
|
+
- standard-custom
|
16
|
+
- rubocop-performance
|
17
|
+
|
5
18
|
# Load basic rules for this version of Ruby from standard.
|
6
19
|
# Rules are overridden in a LIFO stack.
|
7
20
|
# If rubocop-performance is loaded first, and standard-performance after it,
|
data/config/ruby-2.7.yml
CHANGED
@@ -1,7 +1,20 @@
|
|
1
|
+
# We want Exclude and Include directives from different
|
2
|
+
# config files to get merged, not overwritten
|
3
|
+
inherit_mode:
|
4
|
+
merge:
|
5
|
+
- Exclude
|
6
|
+
- Include
|
7
|
+
|
1
8
|
inherit_from:
|
2
9
|
- ./base.yml
|
3
10
|
- ./internal/ruby-2.7.yml
|
4
11
|
|
12
|
+
require:
|
13
|
+
- standard
|
14
|
+
- standard-performance
|
15
|
+
- standard-custom
|
16
|
+
- rubocop-performance
|
17
|
+
|
5
18
|
# Load basic rules for this version of Ruby from standard.
|
6
19
|
# Rules are overridden in a LIFO stack.
|
7
20
|
# If rubocop-performance is loaded first, and standard-performance after it,
|
data/config/ruby-3.0.yml
CHANGED
@@ -1,7 +1,20 @@
|
|
1
|
+
# We want Exclude and Include directives from different
|
2
|
+
# config files to get merged, not overwritten
|
3
|
+
inherit_mode:
|
4
|
+
merge:
|
5
|
+
- Exclude
|
6
|
+
- Include
|
7
|
+
|
1
8
|
inherit_from:
|
2
9
|
- ./base.yml
|
3
10
|
- ./internal/ruby-3.0.yml
|
4
11
|
|
12
|
+
require:
|
13
|
+
- standard
|
14
|
+
- standard-performance
|
15
|
+
- standard-custom
|
16
|
+
- rubocop-performance
|
17
|
+
|
5
18
|
# Load basic rules for this version of Ruby from standard.
|
6
19
|
# Rules are overridden in a LIFO stack.
|
7
20
|
# If rubocop-performance is loaded first, and standard-performance after it,
|
data/config/ruby-3.1.yml
CHANGED
@@ -1,7 +1,20 @@
|
|
1
|
+
# We want Exclude and Include directives from different
|
2
|
+
# config files to get merged, not overwritten
|
3
|
+
inherit_mode:
|
4
|
+
merge:
|
5
|
+
- Exclude
|
6
|
+
- Include
|
7
|
+
|
1
8
|
inherit_from:
|
2
9
|
- ./base.yml
|
3
10
|
- ./internal/ruby-3.1.yml
|
4
11
|
|
12
|
+
require:
|
13
|
+
- standard
|
14
|
+
- standard-performance
|
15
|
+
- standard-custom
|
16
|
+
- rubocop-performance
|
17
|
+
|
5
18
|
# Load basic rules for this version of Ruby from standard.
|
6
19
|
# Rules are overridden in a LIFO stack.
|
7
20
|
# If rubocop-performance is loaded first, and standard-performance after it,
|
data/config/ruby-3.2.yml
CHANGED
@@ -1,7 +1,20 @@
|
|
1
|
+
# We want Exclude and Include directives from different
|
2
|
+
# config files to get merged, not overwritten
|
3
|
+
inherit_mode:
|
4
|
+
merge:
|
5
|
+
- Exclude
|
6
|
+
- Include
|
7
|
+
|
1
8
|
inherit_from:
|
2
9
|
- ./base.yml
|
3
10
|
- ./internal/ruby-3.2.yml
|
4
11
|
|
12
|
+
require:
|
13
|
+
- standard
|
14
|
+
- standard-performance
|
15
|
+
- standard-custom
|
16
|
+
- rubocop-performance
|
17
|
+
|
5
18
|
# Load basic rules for this version of Ruby from standard.
|
6
19
|
# Rules are overridden in a LIFO stack.
|
7
20
|
# If rubocop-performance is loaded first, and standard-performance after it,
|
data/config/ruby-3.3.yml
CHANGED
@@ -1,7 +1,20 @@
|
|
1
|
+
# We want Exclude and Include directives from different
|
2
|
+
# config files to get merged, not overwritten
|
3
|
+
inherit_mode:
|
4
|
+
merge:
|
5
|
+
- Exclude
|
6
|
+
- Include
|
7
|
+
|
1
8
|
inherit_from:
|
2
9
|
- ./base.yml
|
3
10
|
- ./internal/ruby-3.3.yml
|
4
11
|
|
12
|
+
require:
|
13
|
+
- standard
|
14
|
+
- standard-performance
|
15
|
+
- standard-custom
|
16
|
+
- rubocop-performance
|
17
|
+
|
5
18
|
# TODO: Load basic rules for this version of Ruby from standard, once Standard includes it!
|
6
19
|
# See: https://github.com/standardrb/standard/pull/560
|
7
20
|
# inherit_gem:
|
data.tar.gz.sig
CHANGED
@@ -1,2 +1,6 @@
|
|
1
|
-
|
2
|
-
|
1
|
+
�~�VH��6!a�@�$#M��z���'i�
|
2
|
+
6z�����I�vw����9����0��u�&�I��C賵&w�Δx��G�WK9�
|
3
|
+
���$���LDbf|�W��������%�*��ـ+���tZ]�3f*r5��P�F�L���t��n�*`~BJ��eҐ�T�q�����?;U5az�tm�sK��F�\�ǔ)�/.�z�؎�
|
4
|
+
�Ap\k�Oc6Z��qq��`� (.��1%49ޔ�u��4����A��ʼnm�U���ac ~���R� _N��6��ʈM���o� 8"���+����e��#�{ӗ&
|
5
|
+
.<z�|�*}=��/�^J������DO��/A����
|
6
|
+
��"ل2���ͤ[�x��6��Ǵ�
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: standard-rubocop-lts
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Peter Boling
|
@@ -309,10 +309,10 @@ licenses:
|
|
309
309
|
- MIT
|
310
310
|
metadata:
|
311
311
|
homepage_uri: https://gitlab.com/rubocop-lts/standard-rubocop-lts
|
312
|
-
source_code_uri: https://gitlab.com/rubocop-lts/standard-rubocop-lts/-/tree/v1.0.
|
313
|
-
changelog_uri: https://gitlab.com/rubocop-lts/standard-rubocop-lts/-/blob/v1.0.
|
312
|
+
source_code_uri: https://gitlab.com/rubocop-lts/standard-rubocop-lts/-/tree/v1.0.5
|
313
|
+
changelog_uri: https://gitlab.com/rubocop-lts/standard-rubocop-lts/-/blob/v1.0.5/CHANGELOG.md
|
314
314
|
bug_tracker_uri: https://gitlab.com/rubocop-lts/standard-rubocop-lts/-/issues
|
315
|
-
documentation_uri: https://www.rubydoc.info/gems/standard-rubocop-lts/1.0.
|
315
|
+
documentation_uri: https://www.rubydoc.info/gems/standard-rubocop-lts/1.0.5
|
316
316
|
wiki_uri: https://gitlab.com/rubocop-lts/standard-rubocop-lts/-/wikis/home
|
317
317
|
funding_uri: https://liberapay.com/pboling
|
318
318
|
rubygems_mfa_required: 'true'
|
metadata.gz.sig
CHANGED
Binary file
|