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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 2b834cd74e025029f69f4c2b53d76c21f0f8936cdc9b6a495e6a7388217bf4c6
4
- data.tar.gz: dfd0b2b0256bc6a225efb647a416b6cd0d2b991ec9275123e36bb42abc792c31
3
+ metadata.gz: dab86808ecdb1b134185591f86073a4b4b7628b0629793f5b93d4387e323b262
4
+ data.tar.gz: 0a9c2342cb8a386dc97442b8a3bec8ae80b230ff0b10301d2e9fdc16db4f43d5
5
5
  SHA512:
6
- metadata.gz: e71e6ccba80923481e536338fb6c812869ec5e82bac23a3f3975ab9b1a00882dbf8972db19855e61eb0b786faf16e786dd835e73a976f4172a35929c559cf916
7
- data.tar.gz: c6c94e6665fb558ba47adb5eb41bfd0d0c5d0cae6c8b7da2e6c5042cf4d2a8a00dbab9d7d50c184ed91416a88f87f6d7c0a1a30ae83c70628b72fb7063803d0e
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.0...HEAD
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, the above results in the following config:
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 rule disablement overrides rubocop-performance's config/default.yml
186
+ # Below: standard's rules override rubocop-performance's (mostly disabling rules)
184
187
  inherit_gem:
185
- standard: config/base.yml
186
- standard-performance: config/base.yml
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.5.yml
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:
@@ -7,7 +7,7 @@ module Standard
7
7
  module Version
8
8
  # Bump VERSION manually for each new release!
9
9
  # See: CONTRIBUTING.md
10
- VERSION = "1.0.4"
10
+ VERSION = "1.0.5"
11
11
  end
12
12
  end
13
13
  end
data.tar.gz.sig CHANGED
@@ -1,2 +1,6 @@
1
- u!d̫��<Y���4���J4^���v-�cs�l<E3��u]m2j�����֓���d��Yn{���FgS yɕ�o��N�v9��h�Y�F�Fl2���ص�d=�*�+N�ݭ ֊��ܡ�^�Xǽ��� ��e^�z��=?�vN������f���T����n*��+���{%�^�/���"������S4m{Ч
2
- ��A���^~$v�}��Ns�$ʌ&�O�+I�%*��mkMfG�?X%�����?��71���i.�f�l��W��L(��[?�q9�3����ŭ�!�Ֆ7�65*h斓u �����i�I ���0LƱ4#`�Q�6~������E�s�J���cC���MB��"B'Hi�ʛݒ%�NM
1
+ �~�VH��6!a�@�$#M��z���'i
2
+ 6z�����I�vw����9����0��u�&�I��C賵&w�Δx��GWK9�
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���a c ~���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
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.4
313
- changelog_uri: https://gitlab.com/rubocop-lts/standard-rubocop-lts/-/blob/v1.0.4/CHANGELOG.md
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.4
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