We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5e47aad commit f7a524dCopy full SHA for f7a524d
xt/space-after-comma.t
@@ -14,7 +14,7 @@ if @*ARGS {
14
@files = @*ARGS;
15
} else {
16
for qx<git ls-files>.lines -> $file {
17
- next unless $file ~~ / '.' ('pod6') $/;
+ next unless $file ~~ / '.' ('pod6'|'md') $/;
18
next if $file ~~ / 'contributors.pod6' $/; # names are hard.
19
push @files, $file;
20
}
@@ -53,6 +53,7 @@ for @files -> $file {
53
$line ~~ s:g/ '"a,b"' //;
54
$line ~~ s:g/ '($var,)' //;
55
$line ~~ s:g/ '(3,)' //;
56
+ $line ~~ s:g/ << 'thing,category' >> //;
57
58
if $line ~~ / ',' [ <!before ' '> & <!before $> ] / {
59
diag "Failure on line `$line-orig`";
0 commit comments