Replies: 1 comment 9 replies
-
The .clang-tidy (or .clang-format) file is only picked up at the sibling or parent level in relation to a source file, so if you have a .clang-tidy file in some subfolder, it won't get picked up. The detection of the .clang-tidy is done by the clang-tidy executable itself and not our extension (the only spot where our extension check for .clang-tidy when determining when the |
Beta Was this translation helpful? Give feedback.
9 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Before going ahead and opening an issue, I want to confirm whether
.clang-tidy
doesn't work with a hierarchy like this:This is what
.clang-tidy
hasThis doesn't work, but adding it to project wide
settings.json
like this works:Beta Was this translation helpful? Give feedback.
All reactions