-
Notifications
You must be signed in to change notification settings - Fork 2
/
.clang-tidy
38 lines (38 loc) · 1.08 KB
/
.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
33
34
35
36
37
38
---
Checks: '*,
-clang-analyzer-deadcode.DeadStores,
-clang-analyzer-alpha.*,
-readability-*,
-llvm-include-order,
-llvm-header-guard,
-llvmlibc-*,
-cppcoreguidelines-pro-bounds-pointer-arithmetic,
-cppcoreguidelines-avoid-magic-numbers,
-cppcoreguidelines-pro-type-union-access,
-cppcoreguidelines-pro-bounds-constant-array-index,
-*-avoid-c-arrays,
-fuchsia-*,
-hicpp-uppercase-literal-suffix,
-google-runtime-references,
-google-build-using-namespace,
-google-readability-braces-around-statements,
-hicpp-signed-bitwise,
-hicpp-uppercase-literal-suffix,
-hicpp-braces-around-statements,
-*-braces-around-statements,
'
WarningsAsErrors: '*'
HeaderFilterRegex: 'catch.hpp'
FormatStyle: 'file'
CheckOptions:
- key: readability-function-size.LineThreshold
value: '200'
- key: readability-function-size.ParameterThreshold
value: '16'
- key: readability-function-size.StatementThreshold
value: '400'
- key: misc-non-private-member-variables-in-classes.IgnorePublicMemberVariables
value: '1'
- key: cppcoreguidelines-avoid-magic-numbers.IgnoredIntegerValues
value: '1;2;3;4;8;'
...