This revision was automatically updated to reflect the committed changes.
Closed by commit rG75a078455fc7: [NFC] disabling clang-tidy check
readability-identifier-naming in Protocol.h (authored by kuhnel).
Changed prior to commit:
https://reviews.llvm.org/D113889?vs=387239&id=387634#toc
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D113889/new/
https://reviews.llvm.org/D113889
Files:
clang-tools-extra/clangd/Protocol.h
Index: clang-tools-extra/clangd/Protocol.h
===================================================================
--- clang-tools-extra/clangd/Protocol.h
+++ clang-tools-extra/clangd/Protocol.h
@@ -36,6 +36,11 @@
#include <string>
#include <vector>
+// This file is using the LSP syntax for identifier names which is different
+// from the LLVM coding standard. To avoid the clang-tidy warnings, we're
+// disabling one check here.
+// NOLINTBEGIN(readability-identifier-naming)
+
namespace clang {
namespace clangd {
@@ -1794,4 +1799,6 @@
};
} // namespace llvm
+// NOLINTEND(readability-identifier-naming)
+
#endif
Index: clang-tools-extra/clangd/Protocol.h
===================================================================
--- clang-tools-extra/clangd/Protocol.h
+++ clang-tools-extra/clangd/Protocol.h
@@ -36,6 +36,11 @@
#include <string>
#include <vector>
+// This file is using the LSP syntax for identifier names which is different
+// from the LLVM coding standard. To avoid the clang-tidy warnings, we're
+// disabling one check here.
+// NOLINTBEGIN(readability-identifier-naming)
+
namespace clang {
namespace clangd {
@@ -1794,4 +1799,6 @@
};
} // namespace llvm
+// NOLINTEND(readability-identifier-naming)
+
#endif
_______________________________________________
cfe-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits