The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

Search results for "dist:Perl-Critic Fatal"

Perl::Critic::Exception::Fatal - A problem that should cause Perl::Critic to stop running. River stage three • 131 direct dependents • 408 total dependents

Something went wrong and processing should not continue. You should never specifically look for this exception or one of its subclasses. Note: the constructor invokes "show_trace" in Exception::Class to force stack-traces to be included in the standa...

PETDANCE/Perl-Critic-1.152 - 17 Oct 2023 04:09:08 UTC

Perl::Critic::Exception::Fatal::Generic - A problem for which there is no specialized information. River stage three • 131 direct dependents • 408 total dependents

A general problem, e.g. I/O errors and problems that may or not be bugs....

PETDANCE/Perl-Critic-1.152 - 17 Oct 2023 04:09:08 UTC

Perl::Critic::Exception::Fatal::Internal - A problem with the Perl::Critic implementation, i.e. a bug. River stage three • 131 direct dependents • 408 total dependents

A representation of a bug found in the code of Perl::Critic....

PETDANCE/Perl-Critic-1.152 - 17 Oct 2023 04:09:08 UTC

Perl::Critic::Exception::Fatal::PolicyDefinition - A bug in a policy. River stage three • 131 direct dependents • 408 total dependents

A bug in a policy was found, e.g. it didn't implement a method that it should have....

PETDANCE/Perl-Critic-1.152 - 17 Oct 2023 04:09:08 UTC

Perl::Critic - Critique Perl source code for best-practices. River stage three • 131 direct dependents • 408 total dependents

Perl::Critic is an extensible framework for creating and applying coding standards to Perl source code. Essentially, it is a static source code analysis engine. Perl::Critic is distributed with a number of Perl::Critic::Policy modules that attempt to...

PETDANCE/Perl-Critic-1.152 - 17 Oct 2023 04:09:08 UTC

perlcritic - Command-line interface to critique Perl source. River stage three • 131 direct dependents • 408 total dependents

"perlcritic" is a Perl source code analyzer. It is the executable front-end to the Perl::Critic engine, which attempts to identify awkward, hard to read, error-prone, or unconventional constructs in your code. Most of the rules are based on Damian Co...

PETDANCE/Perl-Critic-1.152 - 17 Oct 2023 04:09:08 UTC

Perl::Critic::Config - The final derived Perl::Critic configuration, combined from any profile file and command-line parameters. River stage three • 131 direct dependents • 408 total dependents

Perl::Critic::Config takes care of finding and processing user-preferences for Perl::Critic. The Config object defines which Policy modules will be loaded into the Perl::Critic engine and how they should be configured. You should never really need to...

PETDANCE/Perl-Critic-1.152 - 17 Oct 2023 04:09:08 UTC

Perl::Critic::Utils::POD - Utility functions for dealing with POD. River stage three • 131 direct dependents • 408 total dependents

Provides means of accessing chunks of POD....

PETDANCE/Perl-Critic-1.152 - 17 Oct 2023 04:09:08 UTC

Perl::Critic::PolicyConfig - Configuration data for a Policy. River stage three • 131 direct dependents • 408 total dependents

A container for the configuration of a Policy....

PETDANCE/Perl-Critic-1.152 - 17 Oct 2023 04:09:08 UTC

Perl::Critic::PolicyFactory - Instantiates Policy objects. River stage three • 131 direct dependents • 408 total dependents

This is a helper class that instantiates Perl::Critic::Policy objects with the user's preferred parameters. There are no user-serviceable parts here....

PETDANCE/Perl-Critic-1.152 - 17 Oct 2023 04:09:08 UTC

Perl::Critic::OptionsProcessor - The global configuration default values, combined with command-line values. River stage three • 131 direct dependents • 408 total dependents

This is a helper class that encapsulates the default parameters for constructing a Perl::Critic::Config object. There are no user-serviceable parts here....

PETDANCE/Perl-Critic-1.152 - 17 Oct 2023 04:09:08 UTC

Perl::Critic::Utils::Constants - Global constants. River stage three • 131 direct dependents • 408 total dependents

Defines commonly used constants for Perl::Critic....

PETDANCE/Perl-Critic-1.152 - 17 Oct 2023 04:09:08 UTC

Perl::Critic::Policy::Modules::ProhibitEvilModules - Ban modules that aren't blessed by your shop. River stage three • 131 direct dependents • 408 total dependents

Use this policy if you wish to prohibit the use of specific modules. These may be modules that you feel are deprecated, buggy, unsupported, insecure, or just don't like....

PETDANCE/Perl-Critic-1.152 - 17 Oct 2023 04:09:08 UTC

Perl::Critic::Policy::InputOutput::RequireCheckedOpen - Write < my $error = open $fh, $mode, $filename; > instead of < open $fh, $mode, $filename; >. River stage three • 131 direct dependents • 408 total dependents

The perl builtin I/O function "open" returns a false value on failure. That value should always be checked to ensure that the open was successful. my $error = open( $filehandle, $mode, $filename ); # ok open( $filehandle, $mode, $filename ) or die "u...

PETDANCE/Perl-Critic-1.152 - 17 Oct 2023 04:09:08 UTC

Perl::Critic::Policy::InputOutput::RequireCheckedClose - Write < my $error = close $fh; > instead of < close $fh; >. River stage three • 131 direct dependents • 408 total dependents

The perl builtin I/O function "close" returns a false value on failure. That value should be checked to ensure that the close was successful. my $error = close $filehandle; # ok close $filehandle or die "unable to close: $!"; # ok close $filehandle; ...

PETDANCE/Perl-Critic-1.152 - 17 Oct 2023 04:09:08 UTC

Perl::Critic::Policy::InputOutput::RequireCheckedSyscalls - Return value of flagged function ignored. River stage three • 131 direct dependents • 408 total dependents

This performs identically to InputOutput::RequireCheckedOpen/Close except that this is configurable to apply to any function, whether core or user-defined. If your module uses Fatal, Fatal::Exception, or autodie then any functions wrapped by those mo...

PETDANCE/Perl-Critic-1.152 - 17 Oct 2023 04:09:08 UTC
16 results (0.029 seconds)