The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

DESCRIPTION

This nitpicking rule removes imports that are explicitly put there, but not used in the same file.

For example, Dumper is not used this simple program:

    use Data::Dumper 'Dumper';
    print 42;

And it will be removed by this program.