flutter_hooks_lint_plugin
flutter_hooks_lint_plugin copied to clipboard
Implement in `custom_lint` due to dart analyzer restrictions on only allowing one analyzer plugin at a time
See here for details: https://github.com/invertase/dart_custom_lint/issues/78
Thank you, I will try to migrate to use custom_lint
in the future release, for code maintainability.
(The migration will reduce some overhead, however, I have some concerns about if everyone who makes an analyzer plugin migrates to the custom_lint
plugin to avoid this restriction, the same performance issue occurs again, because the total workload does not change...)
The workload does change in fact
Custom_lint solves the performance issue by having all plug-ins shares the same process. So they share analysis/memory and co
@mj-hd any plans on updating to custom_lint
? If not, I can take a look as well and send a PR, if you would like.
@satvikpendem Thank you, I don't have time to migrate the code...
Thanks, let me see what I can do and I'll send a PR.