Commits
Click on a commit to change the comparison rangerefactor(linter): remove lifetime of `Message` (#14481)
closes https://github.com/oxc-project/backlog/issues/175
Some fixes are references to the `source_text`, removed that reference to hold its own fix source text.
So the language server / tester does not need to clone the `Message` into the own allocator.
Tried to use `.to_owned()` where possible, some needed `.to_string()`, or `into_source_text()` (for codegen).