standard-rubocop-lts 1.0.5 → 1.0.6
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 +3 -2
- data/CHANGELOG.md +4 -0
- data/config/internal/base.yml +21 -0
- data/config/internal/ruby-1.8.yml +22 -0
- data/config/internal/ruby-1.9.yml +38 -0
- data/config/internal/ruby-2.0.yml +1 -0
- data/config/internal/ruby-2.1.yml +1 -0
- data/config/internal/ruby-2.2.yml +6 -0
- data/config/internal/ruby-2.3.yml +1 -0
- data/config/internal/ruby-2.4.yml +1 -0
- data/config/internal/ruby-2.5.yml +1 -0
- data/config/internal/ruby-2.6.yml +1 -0
- data/config/internal/ruby-2.7.yml +1 -0
- data/config/internal/ruby-3.0.yml +1 -0
- data/config/internal/ruby-3.1.yml +1 -0
- data/config/internal/ruby-3.2.yml +1 -0
- data/config/internal/ruby-3.3.yml +1 -0
- data/lib/standard/rubocop/lts/version.rb +1 -1
- data.tar.gz.sig +0 -0
- metadata +19 -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: 90d1f7cf1346192558e6810e5f4194a1f5c18114aa7f75059632875d2aecb792
|
4
|
+
data.tar.gz: 3f3b67c73f54664f70d7a30522237026435f9485e7ee7046645d29500d010697
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7e15618e715e3a3ea41c67f243cbc7281f3e16071e0ff5f6468959e1ab301046a09832fa296c84473b188d0bdc2d881e5b6c2109862740dd6b39d5c43f9472d2
|
7
|
+
data.tar.gz: 59529f89fa87bf9fbeac216c835b1efb9d224bae9eb26ad2797441d815f398fca956dabbb82ff9717946f27d923fc75603103a87dc27363ed62bca929d551600
|
checksums.yaml.gz.sig
CHANGED
@@ -1,2 +1,3 @@
|
|
1
|
-
|
2
|
-
|
1
|
+
"����DDb��L���˧����P�̉���U=�p�}��u�8J�b�����z�1�Nq·�0x��#�J��3�R�E�uR�8�:���u�ѕ����
|
2
|
+
J����5�,`��h�T�o�X\���c�H��6��v�{�������'$��O������J�����T�`�V)���=$Q�>:n_����LF2{�����7S�����7��|I,b�8g���%��!�7+V��ySܛ���gu����W�ޢ�S���\�H;�OT�w������<0R��F�t�z�O�:���
|
3
|
+
�`�d�脏�3ef�A�s�T�d��@��2�����S"~M���{r��>��>n�萷m<����3�Y�cs�z
|
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.6] 2023-06-03
|
14
|
+
### Fixed
|
15
|
+
- ship internal configs with gem
|
16
|
+
|
13
17
|
## [1.0.5] 2023-06-03
|
14
18
|
### Fixed
|
15
19
|
- require deps for configs 1.9 - 3.3
|
@@ -0,0 +1,21 @@
|
|
1
|
+
# See:
|
2
|
+
# https://github.com/rubocop/rubocop-performance/issues/240
|
3
|
+
# https://github.com/rubocop/rubocop-performance/pull/241
|
4
|
+
Performance/Casecmp:
|
5
|
+
Enabled: false
|
6
|
+
|
7
|
+
# See: https://github.com/rubocop/rubocop-performance/issues/329#issuecomment-1375527811
|
8
|
+
Performance/BlockGivenWithExplicitBlock:
|
9
|
+
Enabled: false
|
10
|
+
|
11
|
+
# See: https://github.com/rubocop/rubocop-performance/issues/329#issuecomment-1451511402
|
12
|
+
Performance/ArraySemiInfiniteRangeSlice:
|
13
|
+
Enabled: false
|
14
|
+
|
15
|
+
# See: https://github.com/rubocop/rubocop-performance/issues/329#issuecomment-1451511402
|
16
|
+
Performance/BigDecimalWithNumericArgument:
|
17
|
+
Enabled: false
|
18
|
+
|
19
|
+
# See: https://github.com/rubocop/rubocop-performance/issues/329#issuecomment-1451511402
|
20
|
+
Performance/IoReadlines:
|
21
|
+
Enabled: false
|
@@ -0,0 +1,22 @@
|
|
1
|
+
inherit_from: ./ruby-1.9.yml
|
2
|
+
|
3
|
+
# NOTE: The lowest TargetRubyVersion that can be declared is 2.0
|
4
|
+
# AllCops:
|
5
|
+
# TargetRubyVersion: 1.8
|
6
|
+
|
7
|
+
##############################################################################
|
8
|
+
# Additional rules that allow preservation of ruby 1.8.7 / ree compatibility #
|
9
|
+
# These are not in standard, and are the primary reason this gem exists. #
|
10
|
+
##############################################################################
|
11
|
+
|
12
|
+
# Ruby 1.8.7 needs the . on chain of method calls at the end of a line
|
13
|
+
# This cop is disabled for Ruby 1.8 in Standard, which is doesn't help
|
14
|
+
# RuboCop/Standard users ensure their codebase remains compatible with Ruby 1.8
|
15
|
+
# As such we override here!
|
16
|
+
# See: https://github.com/standardrb/standard/issues/561
|
17
|
+
Layout/DotPosition:
|
18
|
+
EnforcedStyle: trailing
|
19
|
+
|
20
|
+
# Disabled in standard's base.yml. Keeping here in case it is removed from base.
|
21
|
+
Style/Documentation:
|
22
|
+
Enabled: false
|
@@ -0,0 +1,38 @@
|
|
1
|
+
inherit_from: ./ruby-2.0.yml
|
2
|
+
|
3
|
+
# NOTE: The lowest TargetRubyVersion that can be declared is 2.0
|
4
|
+
# AllCops:
|
5
|
+
# TargetRubyVersion: 1.9
|
6
|
+
|
7
|
+
# Standard's rules in base.yml do not work with Ruby < 2.0, so overriding.
|
8
|
+
# See: https://github.com/standardrb/standard/pull/563
|
9
|
+
# Percent delimiters are not supported until Ruby 2.0
|
10
|
+
Style/PercentLiteralDelimiters:
|
11
|
+
Enabled: false
|
12
|
+
|
13
|
+
Style/SymbolArray:
|
14
|
+
EnforcedStyle: brackets
|
15
|
+
|
16
|
+
Style/WordArray:
|
17
|
+
EnforcedStyle: brackets
|
18
|
+
|
19
|
+
##############################################################################
|
20
|
+
# Additional rules that allow preservation of ruby 1.8.7 / ree compatibility #
|
21
|
+
# These are not in standard, and are a secondary reason this gem exists. #
|
22
|
+
##############################################################################
|
23
|
+
|
24
|
+
# Disabled in standard's base.yml, which allows magic encoding comments to live on.
|
25
|
+
# Reproducing here, in case Standard Ruby drops the config.
|
26
|
+
#
|
27
|
+
Style/Encoding:
|
28
|
+
Enabled: false
|
29
|
+
# The encoding comments can be removed once a project drops Ruby 1.9 support.
|
30
|
+
# Whole file UTF-8 Encoding is default in Ruby 2+, so the Encoding comment is usually not needed there.
|
31
|
+
# See:
|
32
|
+
# * https://www.rubydoc.info/gems/rubocop/0.49.0/RuboCop/Cop/Style/Encoding
|
33
|
+
# * https://rubydoc.info/gems/rubocop/RuboCop/Cop/Style/Encoding
|
34
|
+
# Unfortunately in latest RuboCop there is only a "never" style enforced (i.e. encodings are always bad).
|
35
|
+
# TODO: Consider bringing back this rule as a new Cop (extracted from old RuboCop)
|
36
|
+
#Style/Encoding:
|
37
|
+
# Enabled: true
|
38
|
+
# EnforcedStyle: always
|
@@ -0,0 +1 @@
|
|
1
|
+
inherit_from: ./ruby-2.1.yml
|
@@ -0,0 +1 @@
|
|
1
|
+
inherit_from: ./ruby-2.2.yml
|
@@ -0,0 +1 @@
|
|
1
|
+
inherit_from: ./ruby-2.4.yml
|
@@ -0,0 +1 @@
|
|
1
|
+
inherit_from: ./ruby-2.5.yml
|
@@ -0,0 +1 @@
|
|
1
|
+
inherit_from: ./ruby-2.6.yml
|
@@ -0,0 +1 @@
|
|
1
|
+
inherit_from: ./ruby-2.7.yml
|
@@ -0,0 +1 @@
|
|
1
|
+
inherit_from: ./ruby-3.0.yml
|
@@ -0,0 +1 @@
|
|
1
|
+
inherit_from: ./ruby-3.1.yml
|
@@ -0,0 +1 @@
|
|
1
|
+
inherit_from: ./ruby-3.2.yml
|
@@ -0,0 +1 @@
|
|
1
|
+
inherit_from: ./ruby-3.3.yml
|
@@ -0,0 +1 @@
|
|
1
|
+
inherit_from: ./base.yml
|
data.tar.gz.sig
CHANGED
Binary file
|
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.6
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Peter Boling
|
@@ -287,6 +287,21 @@ files:
|
|
287
287
|
- README.md
|
288
288
|
- SECURITY.md
|
289
289
|
- config/base.yml
|
290
|
+
- config/internal/base.yml
|
291
|
+
- config/internal/ruby-1.8.yml
|
292
|
+
- config/internal/ruby-1.9.yml
|
293
|
+
- config/internal/ruby-2.0.yml
|
294
|
+
- config/internal/ruby-2.1.yml
|
295
|
+
- config/internal/ruby-2.2.yml
|
296
|
+
- config/internal/ruby-2.3.yml
|
297
|
+
- config/internal/ruby-2.4.yml
|
298
|
+
- config/internal/ruby-2.5.yml
|
299
|
+
- config/internal/ruby-2.6.yml
|
300
|
+
- config/internal/ruby-2.7.yml
|
301
|
+
- config/internal/ruby-3.0.yml
|
302
|
+
- config/internal/ruby-3.1.yml
|
303
|
+
- config/internal/ruby-3.2.yml
|
304
|
+
- config/internal/ruby-3.3.yml
|
290
305
|
- config/ruby-1.8.yml
|
291
306
|
- config/ruby-1.9.yml
|
292
307
|
- config/ruby-2.0.yml
|
@@ -309,10 +324,10 @@ licenses:
|
|
309
324
|
- MIT
|
310
325
|
metadata:
|
311
326
|
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.
|
327
|
+
source_code_uri: https://gitlab.com/rubocop-lts/standard-rubocop-lts/-/tree/v1.0.6
|
328
|
+
changelog_uri: https://gitlab.com/rubocop-lts/standard-rubocop-lts/-/blob/v1.0.6/CHANGELOG.md
|
314
329
|
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.
|
330
|
+
documentation_uri: https://www.rubydoc.info/gems/standard-rubocop-lts/1.0.6
|
316
331
|
wiki_uri: https://gitlab.com/rubocop-lts/standard-rubocop-lts/-/wikis/home
|
317
332
|
funding_uri: https://liberapay.com/pboling
|
318
333
|
rubygems_mfa_required: 'true'
|
metadata.gz.sig
CHANGED
Binary file
|