H.Merijn Brand

Results 30 issues of H.Merijn Brand

So, I do have access to a z/os os390 in native ebcdic which comes with some additional drawbacks: - only basic POSIX sh, no bash (I failed building bash-4.4.18) -...

tests

I am all in favor of forbidding version-strings, but ``` perl use 5.18.2; ``` is too common (and useful) to forbid. rewriting that to 'use 5.018002;' seems just stupid (in...

Enhancement

Or false positive, I never know, but this: ``` #!/usr/bin/perl use 5.14.2; use warnings; our $VERSION = "0.01 - 20210818"; our $CMD = $0 =~ s{.*/}{}r; my @foo = ("",...

Bug

``` perl #!/usr/bin/perl use strict; use warnings; our $VERSION = "0.00"; format STDOUT = number(s) description --------- ---------------- @

``` $ cat test.pl #!/usr/bin/perl use strict; use warnings; our $VERSION = "1.00"; write; format STDOUT = @>>>> @

Bug

``` perl #!perl use strict; use warnings; our $VERSION = "0.00"; @_{qw( a b )} = (0, 1); ``` ``` $ perlcritic -1 test.pl test.pl#8.15: [4 - Variables::RequireLocalizedPunctuationVars] Magic variable...

Bug

If I look at http://cpancover.com/latest/Text-CSV_XS-1.32/index.html I see it includes a core file in the coverage, which is pulling down overall coverage ![20170928093716](https://user-images.githubusercontent.com/2492/30954517-b988132e-a430-11e7-9d80-20d3202600dd.png) I don't think CORE files should be included...

needs investigation

I'd like to have means to tag XS lines as uncoverable. Currently neither /* uncovered */ nor /* uncoverable statement */ achieve that goal. I prefer /* uncovered */, as...

prio: wish

other than me not wanting to install deprecated modules, I have a global red flag on modules from PERLANCAR, because it might drag in half of CPAN or useless duplications...

This perl script is much shorter and • generates correct `CSV` • Allows short names: `adb-export.pl -e contacts` • Gathers exports in a single `exports` folder ``` #!/usr/bin/perl use 5.14.2;...