Browse Source

LexerParser: disable clang-tidy checks

Daniel Pfeifer 8 years ago
parent
commit
7f4eaf2348
1 changed files with 6 additions and 0 deletions
  1. 6 0
      Source/LexerParser/.clang-tidy

+ 6 - 0
Source/LexerParser/.clang-tidy

@@ -0,0 +1,6 @@
+---
+# We want to disable all checks for generated code.  However, clang-tidy will
+# assume we did not configure it correctly.  Just add one check that will never
+# be found.
+Checks: '-*,llvm-twine-local'
+...