-
RT Ticket: http://rt.cpan.org/Ticket/Display.html?id=59176
Requested On: Wed Jul 07 15:07:30 2010
Requested By: user42@zip.com.au
---
Foo.pm below critiqued as "perlcritic -1 Foo.pm" gets violation …
-
i can make a PR if someone tells me which is the preferred way to do so:
via a
```perl
sub prepare_to_scan_document {
my ( $self, $document ) = @_;
return ! $self->{_exempt_scripts} ||…
-
Include information about:
- How to name scripts
- How to name environment variables
- Module namespacing
- The directory structure to use for repositories
- Using Dist::Zilla to manage tests
- Perl::…
-
code:
```perl
use utf8;
my %x = (Привет => 1);
my($key) = keys %x;
die unless $key eq 'Привет';
```
perlcritic:
```
% perlcritic .
Problem while critiquing "foo.pl": Can't parse code…
-
Nice to see a Dockerfile being added.
However, it's customary to ship Dockerfiles at project top level, and some software actually depends on things being set up that way, and people tend to expect…
scop updated
11 months ago
-
The normal way to initialize an array in Perl is to pass a list enclosed in () on the right hand side:
```
my @things = (1, 2, 3);
```
That is overwhelmingly the preferred way to do it, even for ini…
-
Perl::Critic will silently fail to run in some Eclipse EPIC installations.
A fix was found here:
https://sourceforge.net/p/e-p-i-c/discussion/258688/thread/46268530/#f8ec/4b16/9139
Specifically, we…
-
-
See this thread: https://www.reddit.com/r/perl/comments/16q97zl/ouch_when_the_small_mistakes_bite/
Short version: The expression passed to `say` is probably a mistake:
my $a = 'a';
my …
-
I've started using VSCode at new $job. I notice there's no mention of VSCode in the docs. There are plugins. Is it worth mentioning these?