forked from pytorch/glow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.clang-tidy
32 lines (32 loc) · 903 Bytes
/
.clang-tidy
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
---
# NOTE: there must be no spaces before the '-', so put the comma last.
Checks: '*,
clang-diagnostic-*,
modernize-*,
clang-analyzer-*,
-clang-analyzer-alpha*,
-readability-named-parameter,
-misc-unused-parameters,
-google-runtime-references,
-google-build-using-namespace,
-cppcoreguidelines-pro-type-union-access,
-google-readability-casting,
-readability-implicit-bool-cast,
-google-readability-todo,
-readability-braces-around-statements,
-google-readability-braces-around-statements,
-performance-unnecessary-value-param,
-misc-unused-using-decls,
-modernize-pass-by-value,
-modernize-raw-string-literal,
-readability-else-after-return,
-readability-implicit-bool-conversion,
-cppcoreguidelines-pro-type-member-init,
-hicpp-member-init,
-cppcoreguidelines-pro-bounds-array-to-pointer-decay
'
WarningsAsErrors: ''
HeaderFilterRegex: 'include/glow'
AnalyzeTemporaryDtors: false
CheckOptions:
...