diff options
author | w0rp <w0rp@users.noreply.github.com> | 2018-07-07 12:08:14 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-07-07 12:08:14 +0100 |
commit | c1a2aa27f36690dec1433a15307fe7198ec27629 (patch) | |
tree | 71fa3f04bc6f14672383e288ff50280c860cc901 | |
parent | 4999ad7e7860459f4ebea2d36d63317e88dd3870 (diff) | |
parent | f78db619d45e54949a8d5d667dffef6ea1e6adb3 (diff) | |
download | ale-c1a2aa27f36690dec1433a15307fe7198ec27629.zip |
Merge pull request #1697 from ananace/add-puppet-languageserver
puppet: Add puppet-languageserver linter
-rw-r--r-- | README.md | 2 | ||||
-rw-r--r-- | ale_linters/puppet/languageserver.vim | 45 | ||||
-rw-r--r-- | doc/ale-puppet.txt | 11 | ||||
-rw-r--r-- | doc/ale.txt | 3 | ||||
-rw-r--r-- | test/puppet-test-files/new-style-module/lib/puppet/types/exampletype.rb | 0 | ||||
-rw-r--r-- | test/puppet-test-files/new-style-module/metadata.json | 0 | ||||
-rw-r--r-- | test/puppet-test-files/new-style-module/template/template.epp | 0 | ||||
-rw-r--r-- | test/puppet-test-files/old-style-module/manifests/init.pp | 0 | ||||
-rw-r--r-- | test/puppet-test-files/old-style-module/templates/template.epp | 0 | ||||
-rw-r--r-- | test/test_puppet_path_detection.vader | 22 |
10 files changed, 81 insertions, 2 deletions
@@ -157,7 +157,7 @@ formatting. | Pony | [ponyc](https://github.com/ponylang/ponyc) | | proto | [protoc-gen-lint](https://github.com/ckaznocha/protoc-gen-lint) | | Pug | [pug-lint](https://github.com/pugjs/pug-lint) | -| Puppet | [puppet](https://puppet.com), [puppet-lint](https://puppet-lint.com) | +| Puppet | [languageserver](https://github.com/lingua-pupuli/puppet-editor-services), [puppet](https://puppet.com), [puppet-lint](https://puppet-lint.com) | | Python | [autopep8](https://github.com/hhatto/autopep8), [black](https://github.com/ambv/black), [flake8](http://flake8.pycqa.org/en/latest/), [isort](https://github.com/timothycrosley/isort), [mypy](http://mypy-lang.org/), [prospector](http://github.com/landscapeio/prospector), [pycodestyle](https://github.com/PyCQA/pycodestyle), [pyls](https://github.com/palantir/python-language-server), [pyre](https://github.com/facebook/pyre-check), [pylint](https://www.pylint.org/) !!, [yapf](https://github.com/google/yapf) | | QML | [qmlfmt](https://github.com/jesperhh/qmlfmt), [qmllint](https://github.com/qt/qtdeclarative/tree/5.11/tools/qmllint) | | R | [lintr](https://github.com/jimhester/lintr) | diff --git a/ale_linters/puppet/languageserver.vim b/ale_linters/puppet/languageserver.vim new file mode 100644 index 00000000..52880f32 --- /dev/null +++ b/ale_linters/puppet/languageserver.vim @@ -0,0 +1,45 @@ +" Author: Alexander Olofsson <alexander.olofsson@liu.se> +" Description: Puppet Language Server integration for ALE + +call ale#Set('puppet_languageserver_executable', 'puppet-languageserver') + +function! ale_linters#puppet#languageserver#GetExecutable(buffer) abort + return ale#Var(a:buffer, 'puppet_languageserver_executable') +endfunction + +function! ale_linters#puppet#languageserver#GetCommand(buffer) abort + let l:exe = ale#Escape(ale_linters#puppet#languageserver#GetExecutable(a:buffer)) + + return l:exe . ' --stdio' +endfunction + +function! ale_linters#puppet#languageserver#GetProjectRoot(buffer) abort + " Note: The metadata.json file is recommended for Puppet 4+ modules, but + " there's no requirement to have it, so fall back to the other possible + " Puppet module directories + let l:root_path = ale#path#FindNearestFile(a:buffer, 'metadata.json') + if !empty(l:root_path) + return fnamemodify(l:root_path, ':h') + endif + + for l:test_path in [ + \ 'manifests', + \ 'templates', + \] + let l:root_path = ale#path#FindNearestDirectory(a:buffer, l:test_path) + if !empty(l:root_path) + return fnamemodify(l:root_path, ':h:h') + endif + endfor + + return '' +endfunction + +call ale#linter#Define('puppet', { +\ 'name': 'languageserver', +\ 'lsp': 'stdio', +\ 'executable_callback': 'ale_linters#puppet#languageserver#GetExecutable', +\ 'command_callback': 'ale_linters#puppet#languageserver#GetCommand', +\ 'language': 'puppet', +\ 'project_root_callback': 'ale_linters#puppet#languageserver#GetProjectRoot', +\}) diff --git a/doc/ale-puppet.txt b/doc/ale-puppet.txt index 604565e0..7c67484e 100644 --- a/doc/ale-puppet.txt +++ b/doc/ale-puppet.txt @@ -23,4 +23,15 @@ g:ale_puppet_puppetlint_options *g:ale_puppet_puppetlint_options* =============================================================================== +puppet-languageserver *ale-puppet-languageserver* + +g:ale_puppet_languageserver_executable *g:ale_puppet_languageserver_executable* + *b:ale_puppet_languageserver_executable* + type: |String| + Default: `'puppet-languageserver'` + + This variable can be used to specify the executable used for + puppet-languageserver. + +=============================================================================== vim:tw=78:ts=2:sts=2:sw=2:ft=help:norl: diff --git a/doc/ale.txt b/doc/ale.txt index 991d7941..60178ee1 100644 --- a/doc/ale.txt +++ b/doc/ale.txt @@ -186,6 +186,7 @@ CONTENTS *ale-contents* puglint.............................|ale-pug-puglint| puppet................................|ale-puppet-options| puppetlint..........................|ale-puppet-puppetlint| + puppet-languageserver...............|ale-puppet-languageserver| pyrex (cython)........................|ale-pyrex-options| cython..............................|ale-pyrex-cython| python................................|ale-python-options| @@ -391,7 +392,7 @@ Notes: * Pony: `ponyc` * proto: `protoc-gen-lint` * Pug: `pug-lint` -* Puppet: `puppet`, `puppet-lint` +* Puppet: `languageserver`, `puppet`, `puppet-lint` * Python: `autopep8`, `black`, `flake8`, `isort`, `mypy`, `prospector`, `pycodestyle`, `pyls`, `pyre`, `pylint`!!, `yapf` * QML: `qmlfmt`, `qmllint` * R: `lintr` diff --git a/test/puppet-test-files/new-style-module/lib/puppet/types/exampletype.rb b/test/puppet-test-files/new-style-module/lib/puppet/types/exampletype.rb new file mode 100644 index 00000000..e69de29b --- /dev/null +++ b/test/puppet-test-files/new-style-module/lib/puppet/types/exampletype.rb diff --git a/test/puppet-test-files/new-style-module/metadata.json b/test/puppet-test-files/new-style-module/metadata.json new file mode 100644 index 00000000..e69de29b --- /dev/null +++ b/test/puppet-test-files/new-style-module/metadata.json diff --git a/test/puppet-test-files/new-style-module/template/template.epp b/test/puppet-test-files/new-style-module/template/template.epp new file mode 100644 index 00000000..e69de29b --- /dev/null +++ b/test/puppet-test-files/new-style-module/template/template.epp diff --git a/test/puppet-test-files/old-style-module/manifests/init.pp b/test/puppet-test-files/old-style-module/manifests/init.pp new file mode 100644 index 00000000..e69de29b --- /dev/null +++ b/test/puppet-test-files/old-style-module/manifests/init.pp diff --git a/test/puppet-test-files/old-style-module/templates/template.epp b/test/puppet-test-files/old-style-module/templates/template.epp new file mode 100644 index 00000000..e69de29b --- /dev/null +++ b/test/puppet-test-files/old-style-module/templates/template.epp diff --git a/test/test_puppet_path_detection.vader b/test/test_puppet_path_detection.vader new file mode 100644 index 00000000..f8d3a0fa --- /dev/null +++ b/test/test_puppet_path_detection.vader @@ -0,0 +1,22 @@ +Before: + call ale#test#SetDirectory('/testplugin/test') + + runtime ale_linters/puppet/languageserver.vim + +After: + call ale#test#RestoreDirectory() + call ale#linter#Reset() + +Execute(old-style module should find its root correctly): + call ale#test#SetFilename('puppet-test-files/old-style-module/manifests/init.pp') + + AssertEqual + \ ale#path#Simplify(g:dir . '/puppet-test-files/old-style-module'), + \ ale_linters#puppet#languageserver#GetProjectRoot(bufnr('')) + +Execute(new-style module should find its root correctly): + call ale#test#SetFilename('puppet-test-files/new-style-module/lib/puppet/types/exampletype.rb') + + AssertEqual + \ ale#path#Simplify(g:dir . '/puppet-test-files/new-style-module'), + \ ale_linters#puppet#languageserver#GetProjectRoot(bufnr('')) |