All patches and comments are welcome. Please squash your changes to logical
commits before using git-format-patch and git-send-email to
patches@git.madduck.net.
If you'd read over the Git project's submission guidelines and adhered to them,
I'd be especially grateful.
1 ===============================================================================
2 ALE Perl Integration *ale-perl-options*
4 ALE offers a few ways to check Perl code. Checking code with `perl` is
5 disabled by default, as `perl` code cannot be checked without executing it.
6 Specifically, we use the `-c` flag to see if `perl` code compiles. This does
7 not execute all of the code in a file, but it does run `BEGIN` and `CHECK`
8 blocks. See `perl --help` and https://stackoverflow.com/a/12908487/406224
13 ===============================================================================
16 *ale-options.perl_perl_executable*
17 *g:ale_perl_perl_executable*
18 *b:ale_perl_perl_executable*
20 g:ale_perl_perl_executable
24 This variable can be changed to modify the executable used for linting perl.
26 *ale-options.perl_perl_options*
27 *g:ale_perl_perl_options*
28 *b:ale_perl_perl_options*
30 g:ale_perl_perl_options
32 Default: `'-c -Mwarnings -Ilib'`
34 This variable can be changed to alter the command-line arguments to the perl
38 ===============================================================================
39 perlcritic *ale-perl-perlcritic*
41 *ale-options.perl_perlcritic_executable*
42 *g:ale_perl_perlcritic_executable*
43 *b:ale_perl_perlcritic_executable*
44 perl_perlcritic_executable
45 g:ale_perl_perlcritic_executable
47 Default: `'perlcritic'`
49 This variable can be changed to modify the perlcritic executable used for
52 *ale-options.perl_perlcritic_profile*
53 *g:ale_perl_perlcritic_profile*
54 *b:ale_perl_perlcritic_profile*
55 perl_perlcritic_profile
56 g:ale_perl_perlcritic_profile
58 Default: `'.perlcriticrc'`
60 This variable can be changed to modify the perlcritic profile used for
61 linting perl. The current directory is checked for the file, then the
62 parent directory, etc, until it finds one. If no matching file is found, no
63 profile is passed to perlcritic.
65 Set to an empty string to disable passing a specific profile to perlcritic
66 with the `'--profile'` option.
68 To prevent perlcritic from using any profile, set this variable to an empty
69 string and pass `'--no-profile'`to perlcritic via the
70 |g:ale_perl_perlcritic_options| variable.
72 *ale-options.perl_perlcritic_options*
73 *g:ale_perl_perlcritic_options*
74 *b:ale_perl_perlcritic_options*
75 perl_perlcritic_options
76 g:ale_perl_perlcritic_options
80 This variable can be changed to supply additional command-line arguments to
81 the perlcritic invocation.
83 *ale-options.perl_perlcritic_showrules*
84 *g:ale_perl_perlcritic_showrules*
85 perl_perlcritic_showrules
86 g:ale_perl_perlcritic_showrules
90 Controls whether perlcritic rule names are shown after the error message.
91 Defaults to off to reduce length of message.
94 ===============================================================================
95 perltidy *ale-perl-perltidy*
97 *ale-options.perl_perltidy_options*
98 *g:ale_perl_perltidy_options*
99 *b:ale_perl_perltidy_options*
100 perl_perltidy_options
101 g:ale_perl_perltidy_options
105 This variable can be changed to alter the command-line arguments to
106 the perltidy invocation.
109 ===============================================================================
110 vim:tw=78:ts=2:sts=2:sw=2:ft=help:norl: