diff --git a/data/modules/h2t/code_style/armarx_clang_tidy b/data/modules/h2t/code_style/armarx_clang_tidy index 30f03a4a76a8243dfd3e09cc7f940c6cb7e67b73..9bd750a7fe8991328fb2262871de41a1ffa0f3c2 100644 --- a/data/modules/h2t/code_style/armarx_clang_tidy +++ b/data/modules/h2t/code_style/armarx_clang_tidy @@ -14,6 +14,7 @@ Checks: ' readability-*, -readability-redundant-string-init, -readability-identifier-length, + -readability-container-contains, modernize-*, -modernize-use-trailing-return-type, -modernize-use-nodiscard, diff --git a/data/modules/h2t/code_style/clangd b/data/modules/h2t/code_style/clangd index 421a838b1d302c4e07f317a1f70efcf47cfe3c00..a8fa8456db56640461d9e433c69bd40dfa25d041 100644 --- a/data/modules/h2t/code_style/clangd +++ b/data/modules/h2t/code_style/clangd @@ -1,5 +1,5 @@ CompileFlags: # Tweak the parse settings - Add: [-xc++, -Wall, -Wno-unused-variable] # treat all files as C++, enable more warnings + Add: [-xc++, -Wall, -Wextra, -Wno-unused-variable] # treat all files as C++, enable more warnings Remove: -fconcepts # strip all other warning-related flags Diagnostics: ClangTidy: diff --git a/data/modules/h2t/code_style/default_clang_tidy b/data/modules/h2t/code_style/default_clang_tidy index e847620984d04cbc46005b666f168967cdfa1fd9..5338b921ed47ffbb9ab68e063787c5b262e104be 100644 --- a/data/modules/h2t/code_style/default_clang_tidy +++ b/data/modules/h2t/code_style/default_clang_tidy @@ -14,6 +14,7 @@ Checks: ' readability-*, -readability-redundant-string-init, -readability-identifier-length, + -readability-container-contains, modernize-*, -modernize-use-trailing-return-type, -modernize-use-nodiscard, diff --git a/data/modules/h2t/code_style/research_projects_clang_tidy b/data/modules/h2t/code_style/research_projects_clang_tidy index 30f03a4a76a8243dfd3e09cc7f940c6cb7e67b73..9bd750a7fe8991328fb2262871de41a1ffa0f3c2 100644 --- a/data/modules/h2t/code_style/research_projects_clang_tidy +++ b/data/modules/h2t/code_style/research_projects_clang_tidy @@ -14,6 +14,7 @@ Checks: ' readability-*, -readability-redundant-string-init, -readability-identifier-length, + -readability-container-contains, modernize-*, -modernize-use-trailing-return-type, -modernize-use-nodiscard,