From 1d449c8b4052cb44bbd251e1da31d17fcc45c5f9 Mon Sep 17 00:00:00 2001 From: Andrey Kalmykov Date: Mon, 19 Feb 2024 18:02:46 +0100 Subject: [PATCH] Add more checks to clangd config --- .clangd | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.clangd b/.clangd index e1b65a31..76783963 100644 --- a/.clangd +++ b/.clangd @@ -1,3 +1,4 @@ +# Documentation for this file: https://clangd.llvm.org/config If: PathMatch: [ .*\.cpp, .*\.h ] @@ -5,5 +6,9 @@ CompileFlags: Add: [-std=c++17] Diagnostics: + # List of clang-tidy checks: https://clang.llvm.org/extra/clang-tidy/checks/list.html ClangTidy: - Add: [ bugprone-*, readability-* ] \ No newline at end of file + # Put here checks you want to use + Add: [ bugprone-*, readability-*, misc-*, cppcoreguidelines-* ] + # Put here checks you don't want to use + Remove: [ ] \ No newline at end of file