rubocop-nosolosoftware 0.5.0 → 0.6.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: be651a56847d606edfb463d7eb40df524b4bd442b2f82ddd91280dc65a043bab
4
- data.tar.gz: 537fee6664ba0550276c2ffc7ae973c66d6630649c2dea68ea9d2a8d1b72f4f4
3
+ metadata.gz: fb5d898222cca337d8a3119aec6ba9cc18f176c6f74833307192e21426cb5b8e
4
+ data.tar.gz: 68c73a006a6ec77afccb43d997bba6074b06f801b85b213a47932aaeb217751c
5
5
  SHA512:
6
- metadata.gz: 57a402c9eaf0a77d7047433d6ded777e2b6183b9c2aeb35bb873bca80111f102b076e1734ceaf404589f5ab497c375e35be8f396b7747719baba193c1669de35
7
- data.tar.gz: f59972379f74a613d139bba332e27977e0297bbff19c6a1a4912f2b8f61f089b96020c57f0440e08387879569fde7415323d92808abfab1bcb98633aa00444f6
6
+ metadata.gz: 9efcc57f05e8918e961190a1953500880ef59927698aec9f4c9fe5c9ef949e70b71c5646fbf80a20ea9982a18d4d38339336599eb4a7a4e1fab9d6fcee0ea821
7
+ data.tar.gz: f1bec6ecc3b4a1ee3d3811b9826fae7b874f7f16520572c50b9dcbc5f906bbeeaf40dd40daa4bf328188717b112de610591db7021c5b50add46c14d5d5c474f7
@@ -5,6 +5,27 @@ 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
+ ## 0.6.0 - 2020-07-13
9
+
10
+ ### Added
11
+ - Added new rules introduced in the last version.
12
+ - Lint/DeprecatedOpenSSLConstant (0.84)
13
+ - Lint/MixedRegexpCaptureTypes (0.85)
14
+ - Style/AccessorGrouping (0.87)
15
+ - Style/BisectedAttrAccessor (0.87)
16
+ - Style/RedundantAssignment (0.87)
17
+ - Style/RedundantFetchBlock (0.86)
18
+ - Style/RedundantRegexpCharacterClass (0.85)
19
+ - Style/RedundantRegexpEscape (0.85)
20
+ - Performance/AncestorsInclude (1.7)
21
+ - Performance/BigDecimalWithNumericArgument (1.7)
22
+ - Performance/RedundantSortBlock (1.7)
23
+ - Performance/RedundantStringChars (1.7)
24
+ - Performance/ReverseFirst (1.7)
25
+ - Performance/SortReverse (1.7)
26
+ - Performance/Squeeze (1.7)
27
+ - Performance/StringInclude (1.7)
28
+
8
29
  ## 0.5.0 - 2020-07-07
9
30
 
10
31
  ### Changed
@@ -2,10 +2,18 @@
2
2
  ## https://rubocop.readthedocs.io/en/latest/cops_lint/
3
3
  #
4
4
 
5
- # https://docs.rubocop.org/en/stable/cops_lint/#lintraiseexception
5
+ # https://docs.rubocop.org/rubocop/cops_lint.html#lintraiseexception
6
6
  Lint/RaiseException:
7
7
  Enabled: true
8
8
 
9
- # https://docs.rubocop.org/en/stable/cops_lint/#lintstructnewoverride
9
+ # https://docs.rubocop.org/rubocop/cops_lint.html#lintstructnewoverride
10
10
  Lint/StructNewOverride:
11
11
  Enabled: true
12
+
13
+ # https://docs.rubocop.org/rubocop/cops_lint.html#lintdeprecatedopensslconstant
14
+ Lint/DeprecatedOpenSSLConstant:
15
+ Enabled: true
16
+
17
+ # https://docs.rubocop.org/rubocop/cops_lint.html#lintmixedregexpcapturetypes
18
+ Lint/MixedRegexpCaptureTypes:
19
+ Enabled: true
@@ -3,3 +3,35 @@
3
3
  #
4
4
 
5
5
  require: rubocop-performance
6
+
7
+ # https://docs.rubocop.org/rubocop-performance/1.7/cops_performance.html#performanceancestorsinclude
8
+ Performance/AncestorsInclude:
9
+ Enabled: true
10
+
11
+ # https://docs.rubocop.org/rubocop-performance/1.7/cops_performance.html#performancebigdecimalwithnumericargument
12
+ Performance/BigDecimalWithNumericArgument:
13
+ Enabled: false
14
+
15
+ # https://docs.rubocop.org/rubocop-performance/1.7/cops_performance.html#performanceredundantsortblock
16
+ Performance/RedundantSortBlock:
17
+ Enabled: true
18
+
19
+ # https://docs.rubocop.org/rubocop-performance/1.7/cops_performance.html#performanceredundantstringchars
20
+ Performance/RedundantStringChars:
21
+ Enabled: true
22
+
23
+ # https://docs.rubocop.org/rubocop-performance/1.7/cops_performance.html#performancereversefirst
24
+ Performance/ReverseFirst:
25
+ Enabled: true
26
+
27
+ # https://docs.rubocop.org/rubocop-performance/1.7/cops_performance.html#performancesortreverse
28
+ Performance/SortReverse:
29
+ Enabled: true
30
+
31
+ # https://docs.rubocop.org/rubocop-performance/1.7/cops_performance.html#performancesqueeze
32
+ Performance/Squeeze:
33
+ Enabled: true
34
+
35
+ # https://docs.rubocop.org/rubocop-performance/1.7/cops_performance.html#performancestringinclude
36
+ Performance/StringInclude:
37
+ Enabled: true
@@ -10,34 +10,58 @@ Style/AsciiComments:
10
10
  Style/BlockDelimiters:
11
11
  EnforcedStyle: braces_for_chaining
12
12
 
13
- # https://rubocop.readthedocs.io/en/latest/cops_style/#styledocumentation
13
+ # https://docs.rubocop.org/rubocop/cops_style.html#styledocumentation
14
14
  Style/Documentation:
15
15
  Enabled: false
16
16
 
17
- # https://docs.rubocop.org/en/stable/cops_style/#styleexponentialnotation
17
+ # https://docs.rubocop.org/rubocop/cops_style.html#styleexponentialnotation
18
18
  Style/ExponentialNotation:
19
19
  Enabled: true
20
20
 
21
- # https://rubocop.readthedocs.io/en/latest/cops_style/#stylefrozenstringliteralcomment
21
+ # https://docs.rubocop.org/rubocop/cops_style.html#stylefrozenstringliteralcommetn
22
22
  Style/FrozenStringLiteralComment:
23
23
  Enabled: false
24
24
 
25
- # https://docs.rubocop.org/en/stable/cops_style/#stylehasheachmethods
25
+ # https://docs.rubocop.org/rubocop/cops_style.html#stylehasheachmethods
26
26
  Style/HashEachMethods:
27
27
  Enabled: true
28
28
 
29
- # https://docs.rubocop.org/en/stable/cops_style/#stylehashtransformkeys
29
+ # https://docs.rubocop.org/rubocop/cops_style.html#stylehashtransformkeys
30
30
  Style/HashTransformKeys:
31
31
  Enabled: true
32
32
 
33
- # https://docs.rubocop.org/en/stable/cops_style/#stylehashtransformvalues
33
+ # https://docs.rubocop.org/rubocop/cops_style.html#stylehashtransformvalues
34
34
  Style/HashTransformValues:
35
35
  Enabled: true
36
36
 
37
- # https://rubocop.readthedocs.io/en/latest/cops_style/#styleregexpliteral
37
+ # https://docs.rubocop.org/rubocop/cops_style.html#styleregexpliteral
38
38
  Style/RegexpLiteral:
39
39
  AllowInnerSlashes: true
40
40
 
41
- # https://docs.rubocop.org/en/stable/cops_style/#styleslicingwithrange
41
+ # https://docs.rubocop.org/rubocop/cops_style.html#styleslicingwithrange
42
42
  Style/SlicingWithRange:
43
43
  Enabled: true
44
+
45
+ # https://docs.rubocop.org/rubocop/cops_style.html#styleaccessorgrouping
46
+ Style/AccessorGrouping:
47
+ Enabled: false
48
+
49
+ # https://docs.rubocop.org/rubocop/cops_style.html#stylebisectedattraccessor
50
+ Style/BisectedAttrAccessor:
51
+ Enabled: true
52
+
53
+ # https://docs.rubocop.org/rubocop/cops_style.html#styleredundantassignment
54
+ Style/RedundantAssignment:
55
+ Enabled: true
56
+
57
+ # https://docs.rubocop.org/rubocop/cops_style.html#styleredundantfetchblock
58
+ Style/RedundantFetchBlock:
59
+ Enabled: true
60
+
61
+ # https://docs.rubocop.org/rubocop/cops_style.html#styleredundantregexpcharacterclass
62
+ Style/RedundantRegexpCharacterClass:
63
+ Enabled: true
64
+
65
+ # https://docs.rubocop.org/rubocop/cops_style.html#styleredundantregexpescape
66
+ Style/RedundantRegexpEscape:
67
+ Enabled: true
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rubocop-nosolosoftware
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.0
4
+ version: 0.6.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Javier Aranda
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-07-07 00:00:00.000000000 Z
11
+ date: 2020-07-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rubocop
@@ -110,8 +110,8 @@ homepage: https://github.com/nosolosoftware/rubocop-nosolosoftware
110
110
  licenses:
111
111
  - MIT
112
112
  metadata:
113
- source_code_uri: https://github.com/nosolosoftware/rubocop-nosolosoftware/tree/v0.5.0
114
- changelog_uri: https://github.com/nosolosoftware/rubocop-nosolosoftware/blob/v0.5.0/CHANGELOG.md
113
+ source_code_uri: https://github.com/nosolosoftware/rubocop-nosolosoftware/tree/v0.6.0
114
+ changelog_uri: https://github.com/nosolosoftware/rubocop-nosolosoftware/blob/v0.6.0/CHANGELOG.md
115
115
  homepage_uri: https://github.com/nosolosoftware/rubocop-nosolosoftware
116
116
  post_install_message:
117
117
  rdoc_options:
@@ -129,7 +129,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
129
129
  - !ruby/object:Gem::Version
130
130
  version: '0'
131
131
  requirements: []
132
- rubygems_version: 3.0.3
132
+ rubygems_version: 3.1.2
133
133
  signing_key:
134
134
  specification_version: 4
135
135
  summary: Default Rubocop configuration used in NoSoloSoftware developments