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

This nitpicking rules removes scalar keywords that are use in scalar context, for example, in this statement:

    my $n = scalar @items;

Since the left hand side is a single scalar variable, the assignment is already in scalar context. It is not necessary to include scalar on the right-hand side.