-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy path.clang-tidy
More file actions
43 lines (43 loc) · 894 Bytes
/
.clang-tidy
File metadata and controls
43 lines (43 loc) · 894 Bytes
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
33
34
35
36
37
38
39
40
41
42
43
---
Checks: >-
boost-*,
bugprone-*,
cert-*,
clang-analyzer-*,
cppcoreguidelines-*,
google-*,
hicpp-*,
llvm-*,
misc-*,
modernize-*,
performance-*,
portability-*,
readability-*,
-google-readability-todo,
-readability-avoid-const-params-in-decls,
-readability-identifier-length,
-bugprone-easily-swappable-parameters,
-llvm-header-guard,
-cert-dcl03-c,
-boost-use-ranges,
-hicpp-static-assert,
-misc-static-assert,
-*-macro-to-enum,
-*-macro-usage,
-*-enum-size,
-*-use-using,
-*-casting-through-void,
-misc-include-cleaner,
-cppcoreguidelines-avoid-do-while,
-*-magic-numbers,
-*-use-enum-class,
-*-use-trailing-return-type,
-*-deprecated-headers,
-*-avoid-c-arrays,
CheckOptions:
- key: readability-function-cognitive-complexity.Threshold
value: '99'
WarningsAsErrors: '*'
HeaderFilterRegex: '.*'
FormatStyle: file
...