mirror of https://github.com/dense-analysis/ale
Explain in more detail why perl checks are disabled by default
This commit is contained in:
parent
f64db199f1
commit
aea5de282e
|
@ -3,6 +3,9 @@ ALE Perl Integration *ale-perl-options*
|
||||||
|
|
||||||
ALE offers a few ways to check Perl code. Checking code with `perl` is
|
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.
|
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|.
|
See |g:ale_linters|.
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue