diff options
-rw-r--r-- | README.md | 3 | ||||
-rw-r--r-- | ale_linters/ansible/ansible-lint.vim | 2 | ||||
-rw-r--r-- | doc/ale.txt | 1 |
3 files changed, 4 insertions, 2 deletions
@@ -28,10 +28,11 @@ name. That seems to be the fairest way to arrange this table. | Language | Tools | | -------- | ----- | +| Ansible | [ansible-lint](https://github.com/willthames/ansible-lint) | | Bash | [-n flag](https://www.gnu.org/software/bash/manual/bash.html#index-set), [shellcheck](https://www.shellcheck.net/) | | Bourne Shell | [-n flag](http://linux.die.net/man/1/sh), [shellcheck](https://www.shellcheck.net/) | | C | [cppcheck](http://cppcheck.sourceforge.net), [gcc](https://gcc.gnu.org/)| -| C++ (filetype cpp)| [cppcheck] (http://cppcheck.sourceforge.net), [gcc](https://gcc.gnu.org/)| +| C++ (filetype cpp) | [cppcheck] (http://cppcheck.sourceforge.net), [gcc](https://gcc.gnu.org/)| | CoffeeScript | [coffee](http://coffeescript.org/), [coffeelint](https://www.npmjs.com/package/coffeelint) | | CSS | [csslint](http://csslint.net/) | | Cython (pyrex filetype) | [cython](http://cython.org/) | diff --git a/ale_linters/ansible/ansible-lint.vim b/ale_linters/ansible/ansible-lint.vim index ee2465fb..a947d9e7 100644 --- a/ale_linters/ansible/ansible-lint.vim +++ b/ale_linters/ansible/ansible-lint.vim @@ -1,4 +1,4 @@ -" Author: w0rp <devw0rp@gmail.com> +" Author: Bjorn Neergaard <bjorn@neersighted.com> " Description: ansible-lint for ansible-yaml files if exists('g:loaded_ale_linters_ansible_ansiblelint') diff --git a/doc/ale.txt b/doc/ale.txt index ab6f6093..38451afd 100644 --- a/doc/ale.txt +++ b/doc/ale.txt @@ -50,6 +50,7 @@ ALE supports the following key features: The following languages and tools are supported. +* Ansible: 'ansible-lint' * Bash: 'shell' (-n flag), 'shellcheck' * Bourne Shell: 'shell' (-n flag), 'shellcheck' * C: 'cppcheck', 'gcc' |