Is there something similar to clangd Include Cleaner? #13311
|
Inside vscode-cpptools is there a tool similar to clangd Include Cleaner? |
Answered by
sean-mcmanus
Feb 26, 2025
Replies: 3 comments 2 replies
|
escherstair Yeah, you can try running the code analysis feature which runs clang-tidy (e.g. right-click Run Code Analysis on Active File), but you need to make sure |
0 replies
Answer selected by
escherstair
|
Thanks |
0 replies
|
Hi Sean McManus (@sean-mcmanus)
Is it possible including/excluding each warning independently? |
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
escherstair Yeah, you can try running the code analysis feature which runs clang-tidy (e.g. right-click Run Code Analysis on Active File), but you need to make sure
misc-include-cleaneris set as an enabled clang-tidy check (e.g. C_Cpp.codeAnalysis.clangTidy.checks.enabled).