rubocop-katalyst 3.3.0 → 3.3.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 +4 -4
- data/config/rubocop-koi.yml +1 -4
- 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: 11bba14eda481aa2b0b923d0a9c9a7f42bf689dd7594ca716ca4789c3e5b9dd0
|
|
4
|
+
data.tar.gz: 8db7b93edab8ec321cbda7aa0004f43523938662541c106334c85b0fbe5013cf
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d4bf9074a6d81aada7a002bb91da6956729e495e764d46050faefd503766ab8ffc04341dd193fae70d91bc793b863ad2d8e5f38703ed32cd2ede509e6cda1907
|
|
7
|
+
data.tar.gz: 3fc92a85f61b1c72da770a546fe7a25f687f5b1d8d426794ec2a8571dabe0e8fb94042092f9c959990d566edd7f5808b02daa59cfb74c30eb7dbe8a8a30a397f
|
data/CHANGELOG.md
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
## [3.3.0] - 2026-08-18
|
|
2
2
|
|
|
3
|
-
- Add Koi/TableAsset cop: admin index tables (index/archived views
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
3
|
+
- Add Koi/TableAsset cop: admin index tables (index/archived views and row
|
|
4
|
+
partials) should not render images or attachments. Flags `row.attachment`
|
|
5
|
+
cells and `image_tag`/`image_pack_tag` helpers as a smell, without
|
|
6
|
+
autocorrection.
|
|
7
7
|
|
|
8
8
|
## [3.2.0] - 2026-08-17
|
|
9
9
|
|
data/config/rubocop-koi.yml
CHANGED
|
@@ -14,9 +14,7 @@ Koi/DuplicatesAssociation:
|
|
|
14
14
|
- "**/app/models/**/*.rb"
|
|
15
15
|
|
|
16
16
|
# Targets admin index views, which are only linted when RuboCop runs
|
|
17
|
-
# through erb_lint, so it takes effect via `rake erb_lint`.
|
|
18
|
-
# partials are included because they render index-style tables of child
|
|
19
|
-
# records within a parent view.
|
|
17
|
+
# through erb_lint, so it takes effect via `rake erb_lint`.
|
|
20
18
|
Koi/TableAsset:
|
|
21
19
|
Description: "Index tables should not render images or attachments."
|
|
22
20
|
Enabled: true
|
|
@@ -27,7 +25,6 @@ Koi/TableAsset:
|
|
|
27
25
|
- "**/app/views/admin/**/index.html.erb"
|
|
28
26
|
- "**/app/views/admin/**/archived.html.erb"
|
|
29
27
|
- "**/app/views/admin/**/*.html+row.erb"
|
|
30
|
-
- "**/app/views/admin/**/_table*.erb"
|
|
31
28
|
|
|
32
29
|
# Targets admin views, which are only linted when RuboCop runs through
|
|
33
30
|
# erb_lint, so it takes effect via `rake erb_lint`.
|