While it might be OK by default to add empty import () statement to use statements that do not already import something so that they are future proofed against new default-exports it still adds a lot of noise and in bigger code bases that are under control by the same org it doesn't gains much value.
That's why I'd like to request a new option to opt-out of adding such "empty import statements" (or however they are called).
E.g., as of now the following line:
Always becomes
With the newly proposed option that line should stay the same, at least if Foo::Bar is used at all.
Thanks for your consideration and for this module in general!