We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4c8b8e0 commit 75a0784Copy full SHA for 75a0784
clang-tools-extra/clangd/Protocol.h
@@ -36,6 +36,11 @@
36
#include <string>
37
#include <vector>
38
39
+// This file is using the LSP syntax for identifier names which is different
40
+// from the LLVM coding standard. To avoid the clang-tidy warnings, we're
41
+// disabling one check here.
42
+// NOLINTBEGIN(readability-identifier-naming)
43
+
44
namespace clang {
45
namespace clangd {
46
@@ -1794,4 +1799,6 @@ template <> struct format_provider<clang::clangd::Position> {
1794
1799
};
1795
1800
} // namespace llvm
1796
1801
1802
+// NOLINTEND(readability-identifier-naming)
1803
1797
1804
#endif
0 commit comments