Fix #1186 - Disable checking code with perl by default

This commit is contained in:
w0rp 2017-12-02 20:43:47 +00:00
parent acd1260339
commit a4f8506227
3 changed files with 7 additions and 0 deletions

View File

@ -27,6 +27,7 @@ let s:default_ale_linters = {
\ 'csh': ['shell'],
\ 'go': ['gofmt', 'golint', 'go vet'],
\ 'help': [],
\ 'perl': ['perlcritic'],
\ 'python': ['flake8', 'mypy', 'pylint'],
\ 'rust': ['cargo'],
\ 'spec': [],

View File

@ -1,6 +1,11 @@
===============================================================================
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.
See |g:ale_linters|.
===============================================================================
perl *ale-perl-perl*

View File

@ -1031,6 +1031,7 @@ g:ale_linters *g:ale_linters*
\ 'csh': ['shell'],
\ 'go': ['gofmt', 'golint', 'go vet'],
\ 'help': [],
\ 'perl': ['perlcritic'],
\ 'python': ['flake8', 'mypy', 'pylint'],
\ 'rust': ['cargo'],
\ 'spec': [],