rubocop-gusto 11.8.0 → 11.8.1
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 +3 -0
- 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: 51513bd8e37d74a7df172f0f418d71dc91dfa804f94b8d771b48dc5b21b18e04
|
|
4
|
+
data.tar.gz: 01af10674be546cc67050bad71849a846c3ed018c6e3c963b3d70109cc4015dc
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 12e87528f2d9f51b6c5ee50dd3a1af68d919027ada144710a5e4eb87c71a80e3c525b3697936a2f8faeebbb8ea785c2d8182dfb75494e033e49205e0f5f361d7
|
|
7
|
+
data.tar.gz: e6cc1a36174b943a266646c76ebaeba03e384432d5edd457d3c7a93c5a844aeba22e67847b72a3cd0489099e30eb73d0355ee923ee16a085c10a47c8a825a39a
|
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
|
+
## [11.8.1](https://github.com/Gusto/rubocop-gusto/compare/v11.8.0...v11.8.1) (2026-09-22)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* allow typographic characters in Style/AsciiComments ([#175](https://github.com/Gusto/rubocop-gusto/issues/175)) ([534b51e](https://github.com/Gusto/rubocop-gusto/commit/534b51ef484867d3efdfd864927f7c8e63f3c7b8))
|
|
12
|
+
|
|
6
13
|
## [11.8.0](https://github.com/Gusto/rubocop-gusto/compare/v11.7.1...v11.8.0) (2026-09-02)
|
|
7
14
|
|
|
8
15
|
|
data/config/default.yml
CHANGED
|
@@ -304,7 +304,10 @@ Style/ArgumentsForwarding:
|
|
|
304
304
|
Enabled: false
|
|
305
305
|
|
|
306
306
|
Style/AsciiComments:
|
|
307
|
+
# Typographic characters that are legitimate in English prose. The cop has no autocorrect,
|
|
308
|
+
# so each one would be a manual fix; bidi controls and homoglyphs still register an offense.
|
|
307
309
|
Enabled: true
|
|
310
|
+
AllowedChars: ["©", "—", "–", "‘", "’", "“", "”", "…"]
|
|
308
311
|
|
|
309
312
|
Style/AutoResourceCleanup:
|
|
310
313
|
Enabled: true
|