foreach my $filepath (@js_files) {
chomp $filepath;
my $tidy = qx{yarn --silent run prettier $filepath};
my $tidy = qx{perl misc/devel/tidy.pl --silent --no-write $filepath};
my $content = read_file $filepath;
ok( $content eq $tidy, "$filepath should be kept tidy" );
}
foreach my $filepath (@vue_files) {
-