diff options
author | w0rp <devw0rp@gmail.com> | 2017-04-12 23:25:31 +0100 |
---|---|---|
committer | w0rp <devw0rp@gmail.com> | 2017-04-12 23:25:31 +0100 |
commit | c2fdb399a7aa635cbd767804c4cccb54e539fd28 (patch) | |
tree | 3cbdf841bbf70c6327d1a144d952a6ef64e69acd /ale_linters | |
parent | 7e0e7359c02632db299eca8224860e3beab72824 (diff) | |
download | ale-c2fdb399a7aa635cbd767804c4cccb54e539fd28.zip |
Set a default for the puppetlint options so the linter will behave like it always has done, by default
Diffstat (limited to 'ale_linters')
-rw-r--r-- | ale_linters/puppet/puppetlint.vim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ale_linters/puppet/puppetlint.vim b/ale_linters/puppet/puppetlint.vim index 0dfd934a..902480d8 100644 --- a/ale_linters/puppet/puppetlint.vim +++ b/ale_linters/puppet/puppetlint.vim @@ -5,7 +5,7 @@ let g:ale_puppet_puppetlint_executable = \ get(g:, 'ale_puppet_puppetlint_executable', 'puppet-lint') let g:ale_puppet_puppetlint_options = -\ get(g:, 'ale_puppet_puppetlint_options', '') +\ get(g:, 'ale_puppet_puppetlint_options', '--no-autoloader_layout-check') function! ale_linters#puppet#puppetlint#GetExecutable(buffer) abort return g:ale_puppet_puppetlint_executable |