diff options
author | w0rp <w0rp@users.noreply.github.com> | 2018-02-28 15:42:04 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-02-28 15:42:04 +0000 |
commit | 1d0690f6d774bb736edced967e5eeed7648ff6c1 (patch) | |
tree | 5a6ce053dae48a2e54c87dd08e602f3a80efc71d /doc/ale-perl.txt | |
parent | f64db199f1c8e4379cc642f6df6de1f70af14a57 (diff) | |
parent | aea5de282ec6d7e8ed0a192c8c8eb0dbf6ff85b0 (diff) | |
download | ale-1d0690f6d774bb736edced967e5eeed7648ff6c1.zip |
Merge pull request #1387 from oalders/oalders-perl-docs
Explain in more detail why perl checks are disabled by default
Diffstat (limited to 'doc/ale-perl.txt')
-rw-r--r-- | doc/ale-perl.txt | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/doc/ale-perl.txt b/doc/ale-perl.txt index 414856bd..0a4adfff 100644 --- a/doc/ale-perl.txt +++ b/doc/ale-perl.txt @@ -3,6 +3,9 @@ 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|. |