rubocop-gooddog 0.5 → 0.9

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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +16 -0
  3. data/config/default.yml +12 -0
  4. metadata +9 -3
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 2e0a162ba88b656334caa1adad6e33f71cc77ba76a64b7031c2f8a767a5d05d1
4
- data.tar.gz: 3abc434d78f5d8ff33c4758804c6feeea481adfc7bda2d37dfdc009e42790e10
3
+ metadata.gz: 5b8bfd3967c0d5d9ceef16882aa1974fe7657dfe61a3836ffc2c967b66601754
4
+ data.tar.gz: c3f318a67b050fc1c85413d86e5f7930a2e433f302da3ea55cb843a2b846efbf
5
5
  SHA512:
6
- metadata.gz: 5057a9c2890ac5fe4a28bf81ebdf4d477d9bc4010df7fe8dd4ce2aaeec27971d83265b61fdca3ab2345bdd9381e93460da44ca413ed62b1fce106758155fb2f6
7
- data.tar.gz: f91d8f77fc6385ca19a654c743f5ff0075404f51789b1516ca97bc6257f8342fc3922f7ddf4c4ca32853f865b9f7ca5affeba6247f422dcb0b47540945c20230
6
+ metadata.gz: '0396d6a0e19cbf87bacad9d5ac6b71b6f2de1901d98aabf26f8b893c4560a9c22e0fe05247c1ea196496074aaec024bb0e9e784916475444d11c7c7ce5b279bf'
7
+ data.tar.gz: 34e8a90086dd0467a4314c61a0e362ca5df58c7a683bcb9da57aa9c93e0ab24073810c18f7b0c98db56e794c4bdc9ca9a903db02438bfe39f7590b10272be3b8
data/CHANGELOG.md CHANGED
@@ -4,6 +4,22 @@ All notable changes to this project will be documented in this file.
4
4
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
5
5
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
6
6
 
7
+ ## [0.9] - 2021-08-20
8
+ ### Added
9
+ - Disabled default cop `Naming/InclusiveLanguage`. `Naming/InclusiveLanguage` is politically biased and should not be included by default.
10
+
11
+ ## [0.8] - 2021-07-24
12
+ ### Added
13
+ - `Metrics/ParameterLists` configured to not count keyword arguments as they add less complexity than positional or optional parameters.
14
+
15
+ ## [0.7] - 2021-06-25
16
+ ### Added
17
+ - `Style/QuotedSymbols` changed from it's default values to `false`, which lines up with the current configuration for `Style/StringLiterals`.
18
+
19
+ ## [0.6] - 2021-04-08
20
+ ### Added
21
+ - `Layout/FirstArrayElementIndentation` changed from it's default values to `consistent`, which lines up with the current configuration for `Layout/FirstHashElementIndentation`.
22
+
7
23
  ## [0.5] - 2021-02-10
8
24
  ### Added
9
25
  - Disabled default cops `Style/Lambda` and `Style/IfWithBooleanLiteralBranches`. `Style/Lambda` we disagree with any of the provided options and `Style/IfWithBooleanLiteralBranches` resulted in a non-equivalent fix.
data/config/default.yml CHANGED
@@ -16,6 +16,9 @@ Layout/EmptyLinesAroundAccessModifier:
16
16
  Layout/EndAlignment:
17
17
  EnforcedStyleAlignWith: variable
18
18
 
19
+ Layout/FirstArrayElementIndentation:
20
+ EnforcedStyle: consistent
21
+
19
22
  Layout/FirstHashElementIndentation:
20
23
  EnforcedStyle: consistent
21
24
 
@@ -43,12 +46,18 @@ Metrics/CyclomaticComplexity:
43
46
  Metrics/MethodLength:
44
47
  Max: 25
45
48
 
49
+ Metrics/ParameterLists:
50
+ CountKeywordArgs: false
51
+
46
52
  Metrics/PerceivedComplexity:
47
53
  Enabled: false
48
54
 
49
55
  Naming/AccessorMethodName:
50
56
  Enabled: false
51
57
 
58
+ Naming/InclusiveLanguage:
59
+ Enabled: false
60
+
52
61
  Style/AndOr:
53
62
  Enabled: false
54
63
 
@@ -85,6 +94,9 @@ Style/IfWithBooleanLiteralBranches:
85
94
  Style/Lambda:
86
95
  Enabled: false
87
96
 
97
+ Style/QuotedSymbols:
98
+ Enabled: false
99
+
88
100
  Style/StringLiterals:
89
101
  Enabled: false
90
102
 
metadata CHANGED
@@ -1,19 +1,22 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rubocop-gooddog
3
3
  version: !ruby/object:Gem::Version
4
- version: '0.5'
4
+ version: '0.9'
5
5
  platform: ruby
6
6
  authors:
7
7
  - James Brooks
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-02-10 00:00:00.000000000 Z
11
+ date: 2021-08-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rubocop
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '1.9'
17
20
  - - ">="
18
21
  - !ruby/object:Gem::Version
19
22
  version: 1.9.1
@@ -21,6 +24,9 @@ dependencies:
21
24
  prerelease: false
22
25
  version_requirements: !ruby/object:Gem::Requirement
23
26
  requirements:
27
+ - - "~>"
28
+ - !ruby/object:Gem::Version
29
+ version: '1.9'
24
30
  - - ">="
25
31
  - !ruby/object:Gem::Version
26
32
  version: 1.9.1
@@ -57,7 +63,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
57
63
  - !ruby/object:Gem::Version
58
64
  version: '0'
59
65
  requirements: []
60
- rubygems_version: 3.0.3
66
+ rubygems_version: 3.2.22
61
67
  signing_key:
62
68
  specification_version: 4
63
69
  summary: RuboCop GoodDog