Files
openfoodnetwork/app
Maikel Linke 4d79dcdd2d Regenerate rubocop todo
I made quite a few changes here to appease Rubocop, good changes. But
there were some indentation suggestions which would make reading the
code harder. One example:

```
--- a/app/models/spree/taxon.rb
+++ b/app/models/spree/taxon.rb
@@ -35,8 +35,8 @@ module Spree
       taxons
         .pluck('spree_taxons.id, enterprises.id AS enterprise_id')
         .each_with_object({}) do |(taxon_id, enterprise_id), collection|
-          collection[enterprise_id.to_i] ||= Set.new
-          collection[enterprise_id.to_i] << taxon_id
+        collection[enterprise_id.to_i] ||= Set.new
+        collection[enterprise_id.to_i] << taxon_id
       end
     end
```

Ideally, we wouldn't mix multi-line method chains with blocks as
argument. So I added this to the todo file for now.
2026-04-02 13:14:30 +11:00
..
2026-03-04 10:28:39 +11:00
2026-04-02 12:21:50 +11:00
2026-03-11 10:58:30 +11:00
2026-04-02 13:14:30 +11:00
2026-04-02 12:23:49 +11:00
2026-04-02 13:02:11 +11:00
2026-03-31 01:54:02 +05:00