There is an ongoing outage on the primary CPAN mirror. It is possible to work around the issue by using MetaCPAN as a mirror.

NAME

TooMuchCode::ProhibitUnnecessaryScalarKeyword - Finds `scalar` in scalar context.

DESCRIPTION

This policy dictates that the use of `scalar` for in statement like this needs to be removed:

my $n = scalar @items;

If the left-hand side of assignment is a single scalar variable, then the assignment is in scalar context. There is no need to add scalar keyword.