logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

Code::TidyAll::Plugin::GenericValidator - A plugin to run any executable as a validator

Authors

       •   Jonathan Swartz <swartz@pobox.com>

       •   Dave Rolsky <autarch@urth.org>

Configuration

       This plugin accepts the following configuration options:

   cmd
       This is the command to be run. This is required.

   argv
       This is a string containing additional arguments to be passed to the command.  These arguments will
       always be passed.

   file_flag
       This is the flag used to tell the command what file to operate on, if it has one.

       By default, the file is simply passed as the last argument. However, many commands will want this passed
       with a flag like "-f", "--file", or "--input".

   ok_exit_codes
       By default, any exit code other than 0 is considered an exception. However, many commands use their exit
       code to indicate that there was a validation issue as opposed to an exception.

       You can specify multiple exit codes either by listing "ok_exit_codes" multiple times or as a space-
       separate list.

Description

       This plugin allows you to define any executable as a validator.

Name

       Code::TidyAll::Plugin::GenericValidator - A plugin to run any executable as a validator

Source

       The source code repository for Code-TidyAll can be found at
       <https://github.com/houseabsolute/perl-code-tidyall>.

Support

       Bugs may be submitted at <https://github.com/houseabsolute/perl-code-tidyall/issues>.

Synopsis

           # In your tidyall config
           [GenericValidator / JSONOrderedTidy]
           cmd = json-ordered-tidy
           argv = -check
           ok_exit_codes = 0 1

Version

       version 0.84

See Also