Some checks failed
Detach Plugins / check (FlyGrep.vim) (push) Has been cancelled
Detach Plugins / check (GitHub.vim) (push) Has been cancelled
Detach Plugins / check (JavaUnit.vim) (push) Has been cancelled
Detach Plugins / check (SourceCounter.vim) (push) Has been cancelled
Detach Plugins / check (cpicker.nvim) (push) Has been cancelled
Detach Plugins / check (dein-ui.vim) (push) Has been cancelled
Detach Plugins / check (git.vim) (push) Has been cancelled
Detach Plugins / check (iedit.vim) (push) Has been cancelled
Detach Plugins / check (scrollbar.vim) (push) Has been cancelled
Detach Plugins / check (vim-chat) (push) Has been cancelled
Detach Plugins / check (vim-cheat) (push) Has been cancelled
Detach Plugins / check (vim-todo) (push) Has been cancelled
Detach Plugins / check (xmake.vim) (push) Has been cancelled
test / Linux (nvim, nightly) (push) Has been cancelled
test / Linux (nvim, v0.3.8) (push) Has been cancelled
test / Linux (nvim, v0.4.0) (push) Has been cancelled
test / Linux (nvim, v0.4.2) (push) Has been cancelled
test / Linux (nvim, v0.4.3) (push) Has been cancelled
test / Linux (nvim, v0.4.4) (push) Has been cancelled
test / Linux (nvim, v0.5.0) (push) Has been cancelled
test / Linux (nvim, v0.5.1) (push) Has been cancelled
test / Linux (nvim, v0.6.0) (push) Has been cancelled
test / Linux (nvim, v0.6.1) (push) Has been cancelled
test / Linux (nvim, v0.7.0) (push) Has been cancelled
test / Linux (nvim, v0.7.2) (push) Has been cancelled
test / Linux (nvim, v0.8.0) (push) Has been cancelled
test / Linux (nvim, v0.8.1) (push) Has been cancelled
test / Linux (nvim, v0.8.2) (push) Has been cancelled
test / Linux (nvim, v0.8.3) (push) Has been cancelled
test / Linux (nvim, v0.9.0) (push) Has been cancelled
test / Linux (nvim, v0.9.1) (push) Has been cancelled
test / Linux (true, vim, v7.4.052) (push) Has been cancelled
test / Linux (true, vim, v7.4.1689) (push) Has been cancelled
test / Linux (true, vim, v7.4.629) (push) Has been cancelled
test / Linux (true, vim, v8.0.0027) (push) Has been cancelled
test / Linux (true, vim, v8.0.0183) (push) Has been cancelled
test / Linux (vim, nightly) (push) Has been cancelled
test / Linux (vim, v8.0.0184) (push) Has been cancelled
test / Linux (vim, v8.0.1453) (push) Has been cancelled
test / Linux (vim, v8.1.2269) (push) Has been cancelled
test / Linux (vim, v8.2.2434) (push) Has been cancelled
test / Linux (vim, v8.2.3995) (push) Has been cancelled
test / Windows (nvim, nightly) (push) Has been cancelled
test / Windows (nvim, v0.3.8) (push) Has been cancelled
test / Windows (nvim, v0.4.2) (push) Has been cancelled
test / Windows (nvim, v0.4.3) (push) Has been cancelled
test / Windows (nvim, v0.4.4) (push) Has been cancelled
test / Windows (nvim, v0.5.0) (push) Has been cancelled
test / Windows (nvim, v0.5.1) (push) Has been cancelled
test / Windows (nvim, v0.6.0) (push) Has been cancelled
test / Windows (nvim, v0.6.1) (push) Has been cancelled
test / Windows (nvim, v0.7.0) (push) Has been cancelled
test / Windows (nvim, v0.7.2) (push) Has been cancelled
test / Windows (nvim, v0.8.0) (push) Has been cancelled
test / Windows (nvim, v0.8.1) (push) Has been cancelled
test / Windows (nvim, v0.8.2) (push) Has been cancelled
test / Windows (nvim, v0.8.3) (push) Has been cancelled
test / Windows (nvim, v0.9.0) (push) Has been cancelled
test / Windows (nvim, v0.9.1) (push) Has been cancelled
test / Windows (vim, nightly) (push) Has been cancelled
test / Windows (vim, v7.4.1185) (push) Has been cancelled
test / Windows (vim, v7.4.1689) (push) Has been cancelled
test / Windows (vim, v8.0.0027) (push) Has been cancelled
test / Windows (vim, v8.0.1453) (push) Has been cancelled
test / Windows (vim, v8.1.2269) (push) Has been cancelled
test / Windows (vim, v8.2.2434) (push) Has been cancelled
test / Windows (vim, v8.2.3995) (push) Has been cancelled
docker / docker (push) Has been cancelled
mirror / check (coding) (push) Has been cancelled
mirror / check (gitee) (push) Has been cancelled
mirror / check (gitlab) (push) Has been cancelled
92 lines
3.6 KiB
Plaintext
92 lines
3.6 KiB
Plaintext
===============================================================================
|
|
ALE Perl Integration *ale-perl-options*
|
|
|
|
ALE offers a few ways to check Perl code. Checking code with `perl` is
|
|
disabled by default, as `perl` code cannot be checked without executing it.
|
|
Specifically, we use the `-c` flag to see if `perl` code compiles. This does
|
|
not execute all of the code in a file, but it does run `BEGIN` and `CHECK`
|
|
blocks. See `perl --help` and https://stackoverflow.com/a/12908487/406224
|
|
|
|
See |g:ale_linters|.
|
|
|
|
|
|
===============================================================================
|
|
perl *ale-perl-perl*
|
|
|
|
g:ale_perl_perl_executable *g:ale_perl_perl_executable*
|
|
*b:ale_perl_perl_executable*
|
|
Type: |String|
|
|
Default: `'perl'`
|
|
|
|
This variable can be changed to modify the executable used for linting perl.
|
|
|
|
|
|
g:ale_perl_perl_options *g:ale_perl_perl_options*
|
|
*b:ale_perl_perl_options*
|
|
Type: |String|
|
|
Default: `'-c -Mwarnings -Ilib'`
|
|
|
|
This variable can be changed to alter the command-line arguments to the perl
|
|
invocation.
|
|
|
|
|
|
===============================================================================
|
|
perlcritic *ale-perl-perlcritic*
|
|
|
|
g:ale_perl_perlcritic_executable *g:ale_perl_perlcritic_executable*
|
|
*b:ale_perl_perlcritic_executable*
|
|
Type: |String|
|
|
Default: `'perlcritic'`
|
|
|
|
This variable can be changed to modify the perlcritic executable used for
|
|
linting perl.
|
|
|
|
|
|
g:ale_perl_perlcritic_profile *g:ale_perl_perlcritic_profile*
|
|
*b:ale_perl_perlcritic_profile*
|
|
Type: |String|
|
|
Default: `'.perlcriticrc'`
|
|
|
|
This variable can be changed to modify the perlcritic profile used for
|
|
linting perl. The current directory is checked for the file, then the
|
|
parent directory, etc, until it finds one. If no matching file is found, no
|
|
profile is passed to perlcritic.
|
|
|
|
Set to an empty string to disable passing a specific profile to perlcritic
|
|
with the `'--profile'` option.
|
|
|
|
To prevent perlcritic from using any profile, set this variable to an empty
|
|
string and pass `'--no-profile'`to perlcritic via the
|
|
|g:ale_perl_perlcritic_options| variable.
|
|
|
|
|
|
g:ale_perl_perlcritic_options *g:ale_perl_perlcritic_options*
|
|
*b:ale_perl_perlcritic_options*
|
|
Type: |String|
|
|
Default: `''`
|
|
|
|
This variable can be changed to supply additional command-line arguments to
|
|
the perlcritic invocation.
|
|
|
|
|
|
g:ale_perl_perlcritic_showrules *g:ale_perl_perlcritic_showrules*
|
|
|
|
Type: |Number|
|
|
Default: `0`
|
|
|
|
Controls whether perlcritic rule names are shown after the error message.
|
|
Defaults to off to reduce length of message.
|
|
===============================================================================
|
|
perltidy *ale-perl-perltidy*
|
|
|
|
g:ale_perl_perltidy_options *g:ale_perl_perltidy_options*
|
|
*b:ale_perl_perltidy_options*
|
|
Type: |String|
|
|
Default: `''`
|
|
|
|
This variable can be changed to alter the command-line arguments to
|
|
the perltidy invocation.
|
|
|
|
===============================================================================
|
|
vim:tw=78:ts=2:sts=2:sw=2:ft=help:norl:
|