diff options
author | Dawid Kurek <dawikur@gmail.com> | 2017-05-10 19:41:58 +0200 |
---|---|---|
committer | Dawid Kurek <dawikur@gmail.com> | 2017-05-16 19:09:59 +0200 |
commit | 9185a0d2e5d229a9fdfdc25279ae1b4c701ac4d9 (patch) | |
tree | 64d0ee9e358db46d12c6dd86d7eae8baf2105b0f /doc | |
parent | 8712aee5dcddd366ae52a0c57e67fdbc13c030ee (diff) | |
download | ale-9185a0d2e5d229a9fdfdc25279ae1b4c701ac4d9.zip |
Add cpplint linter
Diffstat (limited to 'doc')
-rw-r--r-- | doc/ale-cpp.txt | 11 | ||||
-rw-r--r-- | doc/ale.txt | 3 |
2 files changed, 13 insertions, 1 deletions
diff --git a/doc/ale-cpp.txt b/doc/ale-cpp.txt index 71673826..a64f87b1 100644 --- a/doc/ale-cpp.txt +++ b/doc/ale-cpp.txt @@ -59,6 +59,17 @@ g:ale_cpp_cppcheck_options *g:ale_cpp_cppcheck_options* ------------------------------------------------------------------------------- +cpplint *ale-cpp-cpplint* + +g:ale_cpp_cpplint_options *g:ale_cpp_cpplint_options* + *b:ale_cpp_cpplint_options* + Type: |String| + Default: `''` + + This variable can be changed to modify flags given to cpplint. + + +------------------------------------------------------------------------------- gcc *ale-cpp-gcc* g:ale_cpp_gcc_options *g:ale_cpp_gcc_options* diff --git a/doc/ale.txt b/doc/ale.txt index 85dc6d20..52a709bb 100644 --- a/doc/ale.txt +++ b/doc/ale.txt @@ -22,6 +22,7 @@ CONTENTS *ale-contents* clang...............................|ale-cpp-clang| clangtidy...........................|ale-cpp-clangtidy| cppcheck............................|ale-cpp-cppcheck| + cpplint.............................|ale-cpp-cpplint| gcc.................................|ale-cpp-gcc| css...................................|ale-css-options| stylelint...........................|ale-css-stylelint| @@ -120,7 +121,7 @@ The following languages and tools are supported. * Bash: 'shell' (-n flag), 'shellcheck' * Bourne Shell: 'shell' (-n flag), 'shellcheck' * C: 'cppcheck', 'gcc', 'clang' -* C++ (filetype cpp): 'clang', 'clangtidy', 'cppcheck', 'gcc' +* C++ (filetype cpp): 'clang', 'clangtidy', 'cppcheck', 'cpplint', 'gcc' * C#: 'mcs' * Chef: 'foodcritic' * CMake: 'cmakelint' |