Files
openfoodnetwork/app/models
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-04-02 12:19:22 +11:00
2026-04-02 13:14:30 +11:00
2024-09-24 10:43:55 +10:00
2023-09-12 23:19:05 +09:00
2024-02-22 10:15:07 +11:00
2026-03-10 16:07:43 +11:00
2023-09-12 23:19:05 +09:00
2024-04-09 10:44:02 +02:00
2025-03-26 19:44:08 +01:00
2025-11-03 15:50:12 +11:00
2026-03-11 11:09:12 +11:00
2024-11-28 13:35:01 +01:00