We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fddbfce commit 17ba53cCopy full SHA for 17ba53c
.clang-tidy
@@ -0,0 +1,19 @@
1
+Checks: >
2
+ -*,
3
+ bugprone-*,
4
+ google-*,
5
+ misc-*,
6
+ modernize-*,
7
+ performance-*,
8
+ portability-*,
9
+ readability-*,
10
+ -google-readability-namespace-comments,
11
+ -google-runtime-int,
12
+ -google-runtime-references,
13
+ -misc-non-private-member-variables-in-classes,
14
+ -readability-named-parameter,
15
+ -readability-braces-around-statements,
16
+ -readability-magic-numbers
17
+
18
+# Turn all the warnings from the checks above into errors.
19
+WarningsAsErrors: ""
scripts/clang_tidy.sh
@@ -0,0 +1 @@
+clang-tidy test/test.cpp -- -Iinclude -Ithird_party/include
0 commit comments