working clang-tidy

clang-tidy is a static analysis tool:
It analyzes C++ source code
It finds bugs, bad practices, and design issues
It uses the same compiler flags as your real build

Examples of what it catches:
Uninitialized variables
Dangling references
Inefficient copies
Dangerous implicit conversions
Missing explicit
Poor modern C++ usage
This commit is contained in:
dl92
2026-01-07 23:49:57 +00:00
parent 44f51cf531
commit c2fc82707e
3 changed files with 25 additions and 2 deletions

View File

@@ -1,5 +1,9 @@
{
"clangd.arguments": [
"--compile-commands-dir=build",
"--clang-tidy"
],
"[cpp]": {
"editor.defaultFormatter": "llvm-vs-code-extensions.vscode-clangd",
"editor.formatOnSave": true