rubocop-gusto 10.9.2 → 10.9.3
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 +4 -4
- data/CHANGELOG.md +7 -0
- data/config/default.yml +0 -7
- data/config/rails.yml +0 -7
- data/lib/rubocop/gusto/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 13b052509f1e53be9d64342ac76775f365d01f4f65227f08d7d6188570829927
|
|
4
|
+
data.tar.gz: edb72d90f8ce3ddf7d09f814e83e966583373255ddbbdbdaceb6d5fbf0bd2daa
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: facce0f6c1e7aada9d188605b7c9ef62a0ecf67308f851a59e3551c4956483371ee90ef658111a0637fd43629994f94943b29136467a95e9d3524b6ed5dfde62
|
|
7
|
+
data.tar.gz: 0445fbe3ef6124a6cd264b7123aa5c320f64ece9cdbd8973c8db10530682276246e27d1b696cbdba00cec9b4aeba643ddb34715cebd96d3fbf034aeecd67e93c
|
data/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,13 @@
|
|
|
3
3
|
- Remove redundant `Rails: Enabled: true` from `config/rails.yml` (already set by rubocop-rails' own defaults)
|
|
4
4
|
- Enable `Rails/DefaultScope` cop (disabled by default in rubocop-rails)
|
|
5
5
|
|
|
6
|
+
## [10.9.3](https://github.com/Gusto/rubocop-gusto/compare/v10.9.2...v10.9.3) (2026-05-27)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* stop overriding AllCops scope in shared configs ([#117](https://github.com/Gusto/rubocop-gusto/issues/117)) ([6e1f5db](https://github.com/Gusto/rubocop-gusto/commit/6e1f5db6b6e12147c2d09f06f6a680c32eba36e7))
|
|
12
|
+
|
|
6
13
|
## [10.9.2](https://github.com/Gusto/rubocop-gusto/compare/v10.9.1...v10.9.2) (2026-05-22)
|
|
7
14
|
|
|
8
15
|
|
data/config/default.yml
CHANGED
|
@@ -8,13 +8,6 @@ plugins:
|
|
|
8
8
|
|
|
9
9
|
AllCops:
|
|
10
10
|
TargetRubyVersion: <%= RbConfig::CONFIG['RUBY_API_VERSION'] %>
|
|
11
|
-
MaxFilesInCache: 100000
|
|
12
|
-
Exclude:
|
|
13
|
-
- './.[!.]*' # ignore all dotfiles
|
|
14
|
-
- './.[!.]*/**/*' # ignore all dot directories
|
|
15
|
-
- 'config/boot.rb'
|
|
16
|
-
- 'db/**/*schema.rb'
|
|
17
|
-
- 'db/seeds{.rb,/**/*}'
|
|
18
11
|
DisplayCopNames: true
|
|
19
12
|
NewCops: disable
|
|
20
13
|
SuggestExtensions: false
|
data/config/rails.yml
CHANGED
|
@@ -9,13 +9,6 @@ plugins:
|
|
|
9
9
|
AllCops:
|
|
10
10
|
ActiveSupportExtensionsEnabled: true
|
|
11
11
|
TargetRubyVersion: <%= RbConfig::CONFIG['RUBY_API_VERSION'] %>
|
|
12
|
-
MaxFilesInCache: 100000
|
|
13
|
-
Exclude:
|
|
14
|
-
- './.[!.]*' # ignore all dotfiles
|
|
15
|
-
- './.[!.]*/**/*' # ignore all dot directories
|
|
16
|
-
- 'config/boot.rb'
|
|
17
|
-
- 'db/**/*schema.rb'
|
|
18
|
-
- 'db/seeds{.rb,/**/*}'
|
|
19
12
|
|
|
20
13
|
Gusto/DiscouragedGem:
|
|
21
14
|
Enabled: true
|