Exclude build artifacts from C/C++ extension analysis

This commit is contained in:
Allen Hill
2023-08-28 20:46:55 -04:00
parent 2a5b95c3f5
commit 70d153f77c
+8 -1
View File
@@ -1,3 +1,10 @@
{
"editor.formatOnSave": true
"editor.formatOnSave": true,
"C_Cpp.codeAnalysis.clangTidy.checks.disabled": [
"clang-analyzer-core.NullDereference"
],
"C_Cpp.files.exclude": {
"build/**": true
},
"cmake.configureOnOpen": true,
}