Skip to content

Commit 87b5ab2

Browse files
committedMay 13, 2023
Enable few slow clang-tidy checks for clangd
In ClickHouse#47424 the readability-identifier-naming had been disabled for clang-tidy builds, but the code base is already uses this notations, so at least, let's enable it for clangd, so that developers who are using editor/IDE with clangd will be warned. FWIW clangd does not think that this check is slow [1], but I guess this file hadn't been updated for quite a while. [1]: https://github.com/llvm/llvm-project/blob/main/clang-tools-extra/clangd/TidyFastChecks.inc Signed-off-by: Azat Khuzhin <[email protected]>

File tree

2 files changed

+16
-1
lines changed

2 files changed

+16
-1
lines changed
 

‎.clangd

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
Diagnostics:
2+
# clangd does parse .clang-tidy, but some checks are too slow to run in
3+
# clang-tidy build, so let's enable them explicitly for clangd at least.
4+
ClangTidy:
5+
# The following checks had been disabled due to slowliness with C++23,
6+
# for more details see [1].
7+
#
8+
# [1]: https://github.com/llvm/llvm-project/issues/61418
9+
#
10+
# But the code base had been written in a style that had been checked
11+
# by this check, so at least, let's enable it for clangd.
12+
Add: [
13+
# configured in .clang-tidy
14+
readability-identifier-naming,
15+
bugprone-reserved-identifier,
16+
]

‎.gitignore

-1
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,6 @@ website/package-lock.json
129129
/.ccls-cache
130130

131131
# clangd cache
132-
/.clangd
133132
/.cache
134133

135134
/compile_commands.json

0 commit comments

Comments
 (0)
Please sign in to comment.