Add cmakelint support for cmake filetype

This commit is contained in:
Kenneth Benzie (Benie)
2017-02-25 17:27:03 +00:00
parent f48f306ab9
commit b5e603bbc5
3 changed files with 44 additions and 0 deletions

View File

@@ -79,6 +79,7 @@ The following languages and tools are supported.
* C++ (filetype cpp): 'clang', 'clangtidy', 'cppcheck', 'gcc'
* C#: 'mcs'
* Chef: 'foodcritic'
* CMake: 'cmakelint'
* CoffeeScript: 'coffee', 'coffelint'
* CSS: 'csslint', 'stylelint'
* Cython (pyrex filetype): 'cython'
@@ -1061,6 +1062,24 @@ g:ale_yaml_yamllint_options *g:ale_yaml_yamllint_options*
This variable can be set to pass additional options to yamllint.
------------------------------------------------------------------------------
4.32. cmakelint *ale-linter-options-cmakelint*
g:ale_cmake_cmakelint_exectuable *g:ale_cmake_cmakelint_executable*
Type: |String|
Default: `''`
This variable can be set to change the path the cmakelint.
g:ale_cmake_cmakelint_options *g:ale_cmake_cmakelint_options*
Type: |String|
Default: `''`
This variable can be set to pass additional options to cmakelint.
===============================================================================
5. Linter Integration Notes *ale-linter-integration*