diff options
author | Andrej Radovic <r.andrej@gmail.com> | 2017-08-06 13:14:09 +0200 |
---|---|---|
committer | Andrej Radovic <r.andrej@gmail.com> | 2017-08-06 13:14:09 +0200 |
commit | 70cd1d5a57318dbbe36e548f705dce4bcd5df267 (patch) | |
tree | 0ace8c1d8499939a678afd3d4b49e179099fb47b | |
parent | a767578d44dd96bfcb395a8cc605b1905f5393dd (diff) | |
download | ale-70cd1d5a57318dbbe36e548f705dce4bcd5df267.zip |
Fixed the comments, left only the doc URL
-rw-r--r-- | ale_linters/c/clangtidy.vim | 47 | ||||
-rw-r--r-- | doc/ale-c.txt | 49 |
2 files changed, 4 insertions, 92 deletions
diff --git a/ale_linters/c/clangtidy.vim b/ale_linters/c/clangtidy.vim index e92c0c01..47faa1ef 100644 --- a/ale_linters/c/clangtidy.vim +++ b/ale_linters/c/clangtidy.vim @@ -7,51 +7,8 @@ call ale#Set('c_clangtidy_executable', 'clang-tidy') " The number of checks that can be applied to C files is limited in contrast to " C++ " -" Here is an incomplete list of C-compatible checks for clang-tidy version 6: -" bugprone-suspicious-memset-usage -" cert-env33-c -" cert-err34-c -" cert-flp30-c -" google-runtime-int -" llvm-header-guard -" llvm-include-order -" misc-argument-comment -" misc-assert-side-effect -" misc-bool-pointer-implicit-conversion -" misc-definitions-in-headers -" misc-incorrect-roundings -" misc-macro-parentheses -" misc-macro-repeated-side-effects -" misc-misplaced-const -" misc-misplaced-widening-cast -" misc-multiple-statement-macro -" misc-non-copyable-objects -" misc-redundant-expression -" misc-sizeof-expression -" misc-static-assert -" misc-string-literal-with-embedded-nul -" misc-suspicious-enum-usage -" misc-suspicious-missing-comma -" misc-suspicious-semicolon -" misc-suspicious-string-compare -" misc-swapped-arguments -" modernize-redundant-void-arg -" modernize-use-bool-literals -" performance-type-promotion-in-math-fn -" readability-braces-around-statements -" readability-else-after-return -" readability-function-size -" readability-identifier-naming -" readability-implicit-bool-cast -" readability-inconsistent-declaration-parameter-name -" readability-misleading-indentation -" readability-misplaced-array-index -" readability-named-parameter -" readability-non-const-parameter -" readability-redundant-control-flow -" readability-redundant-declaration -" readability-redundant-function-ptr-dereference -" readability-simplify-boolean-expr +" Consult the check list in clang-tidy's documentation: +" http://clang.llvm.org/extra/clang-tidy/checks/list.html call ale#Set('c_clangtidy_checks', ['*']) " Set this option to manually set some options for clang-tidy. diff --git a/doc/ale-c.txt b/doc/ale-c.txt index eb52bc19..8188b879 100644 --- a/doc/ale-c.txt +++ b/doc/ale-c.txt @@ -75,53 +75,8 @@ g:ale_c_clangtidy_checks *g:ale_c_clangtidy_checks* option to an empty List. Not all of clangtidy checks are applicable for C. You should consult the - clang documentation for an up-to-date list of compatible checks. - - Here's an (incomplete) list of C-compatible checks, for clang-tidy version 6: - bugprone-suspicious-memset-usage - cert-env33-c - cert-err34-c - cert-flp30-c - google-runtime-int - llvm-header-guard - llvm-include-order - misc-argument-comment - misc-assert-side-effect - misc-bool-pointer-implicit-conversion - misc-definitions-in-headers - misc-incorrect-roundings - misc-macro-parentheses - misc-macro-repeated-side-effects - misc-misplaced-const - misc-misplaced-widening-cast - misc-multiple-statement-macro - misc-non-copyable-objects - misc-redundant-expression - misc-sizeof-expression - misc-static-assert - misc-string-literal-with-embedded-nul - misc-suspicious-enum-usage - misc-suspicious-missing-comma - misc-suspicious-semicolon - misc-suspicious-string-compare - misc-swapped-arguments - modernize-redundant-void-arg - modernize-use-bool-literals - performance-type-promotion-in-math-fn - readability-braces-around-statements - readability-else-after-return - readability-function-size - readability-identifier-naming - readability-implicit-bool-cast - readability-inconsistent-declaration-parameter-name - readability-misleading-indentation - readability-misplaced-array-index - readability-named-parameter - readability-non-const-parameter - readability-redundant-control-flow - readability-redundant-declaration - readability-redundant-function-ptr-dereference - readability-simplify-boolean-expr + clang documentation for an up-to-date list of compatible checks: + http://clang.llvm.org/extra/clang-tidy/checks/list.html g:ale_c_clangtidy_executable *g:ale_c_clangtidy_executable* |