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.
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.