Vesa Laakso
                                            Vesa Laakso
                                        
                                    Huh, why didn't the tests start to run.... baaaah.
Yeah this sounds like a tool that might be useful to have via another open source repository. We support the `analyzerMode: 'json'` option and that option can be used to...
The workaround is to use the plugin and not CLI
Here's a minimalized reproduction that still shows the slow formatting performance. This code is formatted in ~20 seconds on my machine: ```rb # If we remove any block here, the...
Actually looks like it doesn't even matter whether there are multiple chained method calls. The formatting time seems to grow exponentially the more blocks I add inside each other. For...
The results seem to be similar if I remove `.call` call chain, as this one also runs in ~11 seconds: ```rb one.call do two.call do three.call do four.call do five.call...
I'll test this tomorrow on a proper device. It does seem reasonable to expect the proposed change to help, but knowing what the issue was in the first place, I...
Sorry for this taking so long. We actually changed our design quite rapidly in the end and I didn't manage to get the time to try this fix. I still...
Hmmh I'm a bit worried with the seemingly lack of interest over at upstream repository (`jsonapi-resources`) right now and it is impacting my motivation in working on this pull request...
This change is also needed for Rails to use any `config.action_controller` values set inside an initializer. Without this change, `health_check` gem loads `ActionController::Base` class before any initializers inside `config/initializers/` run....