Hristo Hristov
Hristo Hristov
@BlueStaggo I decided to try your settings.json immediately and I noticed that in a git compare window the colors don't match, which I would expect they do. I haven't noticed...
I am not going to argue against the one or the other approach. But at least a basic mixed mode is really desirable/urgently needed. Let's say I want to put...
I suppose the extension is using a bundled clang-tidy 14. The same configuration does not produce any crash on the command line with clang-tidy 15 from apt.llvm.org.
If I execute this command on the same file/project I do not get a crash but my local clang-tidy 15 is from here: https://apt.llvm.org/ > clang-tidy -config-file=.clang-tidy FirstEngine/Samples/HelloWorld/Source/main.cpp The cpptools...
> 14 is not supported, so I'm closing issue. @EugeneZelenko It is also crashing with external (manual setting) ***`clang-tidy 15`*** from: https://apt.llvm.org/ `./.vs/settings.json` ```json5 { "cmake.sourceDirectory": "${workspaceFolder}/FirstEngine", "C_Cpp.default.configurationProvider": "ms-vscode.cmake-tools", "C_Cpp.codeAnalysis.clangTidy.enabled":...
After removing `readability-*`: >PLEASE submit a bug report to https://github.com/llvm/llvm-project/issues/ and include the crash backtrace. Stack dump: >0. Program arguments: /usr/bin/clang-tidy --config-file=/home/hristo/Projects/Example/.clang-tidy --export-fixes=/tmp/loose/cpptools/11772483893519446356/fixes140363129898560.yaml --quiet /home/hristo/Projects/Example/FirstEngine/Samples/HelloWorld/Source/main.cpp -- -std=gnu++2b -xc++ -Wno-pragma-pack -D__SSP_STRONG__=3...
No more crashes with this `.clang-tidy` configuration file: ```yaml --- Checks: > -*, bugprone-*, cert-*, clang-analyzer-*, clang-diagnostic-*, concurrency-*, cppcoreguidelines-*, misc-*, modernize-*, performance-*, portability-*, CheckOptions: - key: llvm-else-after-return.WarnOnConditionVariables value: 'false' -...
@EugeneZelenko @whisperity I am using clang-tidy 15 from: [apt.llvm.org](https://apt.llvm.org/) I disabled the following checks and the crash stopped: - `-readability-braces-around-statements,` - `-readability-simplify-boolean-expr,` - `-google-readability-braces-around-statements,` - `-hicpp-braces-around-statements,` Please note the crash...
AFAIK https://github.com/microsoft/vscode-cpptools is modifying my `.clang-tidy` settings before passing them to clang-tidy.
I second that. I'd like markdown support and better Doxygen compatibility and more of the comment styles supported: qt, etc. I'd like the same level of support as displayed on...