The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

Search results for "module:Perl::Critic::Config"

Perl::Critic::Config - The final derived Perl::Critic configuration, combined from any profile file and command-line parameters. River stage three • 133 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::PolicyConfig - Configuration data for a Policy. River stage three • 133 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 - Critique Perl source code for best-practices. River stage three • 133 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

Perl::Critic::Utils - General utility subroutines and constants for Perl::Critic and derivative distributions. River stage three • 133 direct dependents • 408 total dependents

This module provides several static subs and variables that are useful for developing Perl::Critic::Policy subclasses. Unless you are writing Policy modules, you probably don't care about this package....

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

Perl::Critic::Policy - Base class for all Policy modules. River stage three • 133 direct dependents • 408 total dependents

Perl::Critic::Policy is the abstract base class for all Policy objects. If you're developing your own Policies, your job is to implement and override its methods in a subclass. To work with the Perl::Critic engine, your implementation must behave as ...

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

Perl::Critic::TestUtils - Utility functions for testing new Policies. River stage three • 133 direct dependents • 408 total dependents

This module is used by Perl::Critic only for self-testing. It provides a few handy subroutines for testing new Perl::Critic::Policy modules. Look at the test programs that ship with Perl::Critic for more examples of how to use these subroutines....

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

Perl::Critic::UserProfile - The contents of the user's profile, often .perlcriticrc. River stage three • 133 direct dependents • 408 total dependents

This is a helper class that encapsulates the contents of the user's profile, which is usually stored in a .perlcriticrc file. There are no user-serviceable parts here....

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

Perl::Critic::MergeProfile - merge multiple Perl::Critic profiles into one River stage one • 1 direct dependent • 1 total dependent

Merges multiple Perl::Critic profiles into a single one. This allows to keep a common base profile for all projects but add project specific changes to the profile....

SKIRMESS/Perl-Critic-MergeProfile-0.003 - 05 Jul 2018 20:49:25 UTC

Perl::Critic::PolicyParameter - Metadata about a parameter for a Policy. River stage three • 133 direct dependents • 408 total dependents

A provider of validation and parsing of parameter values and metadata about the parameter....

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

Test::Perl::Critic::XTFiles - Perl::Critic test with XT::Files interface River stage zero No dependents

Tests all the files supplied from XT::Files with Perl::Critic. The output, and behavior, should be the same as from Test::Perl::Critic....

SKIRMESS/Test-Perl-Critic-XTFiles-0.001 - 25 Aug 2019 09:12:06 UTC

Perl::Critic::OptionsProcessor - The global configuration default values, combined with command-line values. River stage three • 133 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

Dist::Zilla::Plugin::Test::Perl::Critic - Tests to check your code against best practices River stage two • 30 direct dependents • 47 total dependents

This will provide a t/author/critic.t file for use during the "test" and "release" calls of "dzil". To use this, make the changes to dist.ini above and run one of the following: dzil test dzil release During these runs, t/author/critic.t will use Tes...

ETHER/Dist-Zilla-Plugin-Test-Perl-Critic-3.001 - 09 May 2017 22:34:08 UTC

Perl::Critic::Policy::PreferredModules - Provide custom package recommendations River stage one • 1 direct dependent • 1 total dependent

Every project has its own rules for preferring specific packages over others. This Policy tries to be `un-opinionated` and let the user provide a module preferences with an explanation and/or suggested alternative....

ATOOMIC/Perl-Critic-Policy-PreferredModules-0.004 - 24 Jan 2022 22:09:59 UTC

Dist::Zilla::Plugin::Test::Perl::Critic::Subset - Tests to check your code against best practices River stage one • 2 direct dependents • 2 total dependents

Fork notice: This is a temporary fork of Dist::Zilla::Plugin::Test::Perl::Critic 3.001 which includes <https://github.com/perlancar/operl-Dist-Zilla-Plugin-Test-Perl-Critic/c ommit/bd46961d9d7da767f7a431fba13de441db4b6848> to add "finder" and "files"...

PERLANCAR/Dist-Zilla-Plugin-Test-Perl-Critic-Subset-3.001.006 - 23 Aug 2021 11:26:12 UTC

Perl::Critic::Policy::Compatibility::PodMinimumVersion - check Perl version declared against POD features used River stage two • 5 direct dependents • 18 total dependents

This policy is part of the "Perl::Critic::Pulp" add-on. It checks that the POD features you use don't exceed your target Perl version as indicated by "use 5.008" etc. use 5.005; =pod C<< something >> # bad, double angles needs 5.006 POD doesn't affec...

KRYDE/Perl-Critic-Pulp-99 - 28 Feb 2021 08:34:14 UTC

Perl::Critic::Policy::Compatibility::PerlMinimumVersionAndWhy - explicit Perl version for features used River stage two • 5 direct dependents • 18 total dependents

This policy is part of the "Perl::Critic::Pulp" add-on. It requires that you have an explicit "use 5.XXX" etc for the Perl syntax features you use, as determined by "Perl::MinimumVersion". use 5.010; # the // operator is new in perl 5.010 print $x //...

KRYDE/Perl-Critic-Pulp-99 - 28 Feb 2021 08:34:14 UTC

Dist::Zilla::Plugin::AutoPrereqs::Perl::Critic - automatically extract Perl::Critic policy prereqs River stage zero No dependents

This plugin will add Perl::Critic and all policies used by it, in the installed version, as distribution prerequisites. critic_config By default no policy is specified which lets Perl::Critic find the config itself. This defaults to .perlcriticrc in ...

SKIRMESS/Dist-Zilla-Plugin-AutoPrereqs-Perl-Critic-0.006 - 02 Apr 2018 22:54:55 UTC
17 results (0.046 seconds)