-
Notifications
You must be signed in to change notification settings - Fork 3
/
.clang-tidy
30 lines (30 loc) · 956 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
UseColor: true
# NOTE Make sure all checks have trailing commas!
Checks: >
bugprone-*,
clang-analyzer-*,
cppcoreguidelines-*,
google-*,
hicpp-*,
modernize-*,
performance-*,
portability-*,
readability-*,
-bugprone-easily-swappable-parameters,
-cppcoreguidelines-avoid-c-arrays,
-cppcoreguidelines-macro-usage,
-cppcoreguidelines-pro-type-cstyle-cast,
-google-readability-todo,
-google-runtime-references,
-hicpp-avoid-c-arrays,
-hicpp-exception-baseclass,
-hicpp-signed-bitwise,
-modernize-avoid-c-arrays,
-modernize-use-nullptr,
-performance-no-int-to-ptr,
-readability-avoid-const-params-in-decls,
-readability-convert-member-functions-to-static,
-readability-function-cognitive-complexity,
-readability-identifier-length,
-used-but-marked-unused,
HeaderFilterRegex: "(^[\\/]*|.*[\\/]+)(argparse\.hpp|args\.hxx|yaml\.cpp|yaml\.hpp)([\\/]*$|[\\/]+.*)"