summaryrefslogtreecommitdiffstats
path: root/Utilities/ClangTidyModule
Commit message (Collapse)AuthorAgeFilesLines
* clang-tidy module: Update to build against LLVM/Clang 16Brad King2023-05-221-3/+7
|
* clang-tidy module: Drop unused variableBrad King2023-05-221-2/+0
|
* clang-tidy module: copy .gitignore from top levelKyle Edwards2023-03-291-0/+8
| | | | | | Since 8b094845, .gitignore entries have been pinned to the top-level .gitignore file. Copy these entries into a .gitignore for the clang-tidy module.
* clang-tidy module: fix offset issue with last string concat operandKyle Edwards2022-12-034-42/+62
|
* clang-tidy module: add tests for string concatenation checkSean Orner2022-11-284-0/+186
|
* clang-tidy module: add check for string concatenationJoe Blaauboer2022-11-284-0/+218
| | | | Co-Authored-by: Kyle Edwards <kyle.edwards@kitware.com>
* clang-tidy module: look for sizeof string literal in cmStrLen() checkKyle Edwards2022-11-184-4/+90
|
* clang-tidy module: add test for #pragma once checkSean Orner2022-11-1710-0/+79
|
* clang-tidy module: add #pragma once checkIgor-Mikhail-Valentin Glebov2022-11-174-0/+389
| | | | Co-Authored-by: Kyle Edwards <kyle.edwards@kitware.com>
* clang-tidy module: allow header files in test casesKyle Edwards2022-11-171-12/+42
|
* clang-tidy module: add test for ostringstream checkSean Orner2022-11-143-0/+17
|
* clang-tidy module: add check for ostringstreamJoe Blaauboer2022-11-144-0/+78
|
* clang-tidy module: add check for boolean parametersSean Orner2022-11-077-0/+143
| | | | Co-Authored-by: Kyle Edwards <kyle.edwards@kitware.com>
* clang-tidy module: add tests for cmsys::fstream checkIgor-Mikhail-Valentin Glebov2022-11-044-0/+318
| | | | Co-Authored-by: Kyle Edwards <kyle.edwards@kitware.com>
* clang-tidy module: add check for cmsys::fstreamJoe Blaauboer2022-11-044-0/+130
| | | | | Co-Authored-by: Kyle Edwards <kyle.edwards@kitware.com> Co-Authored-by: Igor-Mikhail-Valentin Glebov <iglebov@albany.edu>
* Tests: remove stderr from clang-tidy module testsKyle Edwards2022-11-042-18/+12
| | | | | | | The stderr has the potential to count warnings from system header files, which are very platform-specific and not reliable, and they are simply a count of all the warnings that were emitted on stdout, which we already have. Remove stderr and only look at stdout.
* clang-tidy module: add test for cmStrLen() checkSean Orner2022-10-195-0/+98
|
* clang-tidy module: add check for cmStrLen()Kyle Edwards2022-10-194-1/+61
| | | | Co-Authored-by: Joe Blaauboer <jblaauboer67@gmail.com>
* clang-tidy module: add test frameworkKyle Edwards2022-10-143-0/+87
|
* clang-tidy module: Add stub moduleKyle Edwards2022-10-122-0/+37
Issue: #23912