-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.clang-tidy
More file actions
28 lines (25 loc) · 813 Bytes
/
Copy path.clang-tidy
File metadata and controls
28 lines (25 loc) · 813 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
Checks: >
modernize-*,
-modernize-use-trailing-return-type,
cppcoreguidelines-*,
-cppcoreguidelines-avoid-magic-numbers,
-cppcoreguidelines-macro-usage,
-cppcoreguidelines-pro-bounds-pointer-arithmetic,
-cppcoreguidelines-pro-bounds-constant-array-index,
-cppcoreguidelines-pro-bounds-avoid-unchecked-container-access,
-cppcoreguidelines-special-member-functions,
-cppcoreguidelines-avoid-do-while,
readability-*,
-readability-magic-numbers,
performance-*,
bugprone-*,
-bugprone-unchecked-optional-access,
-bugprone-exception-escape,
clang-analyzer-*
WarningsAsErrors: "*"
HeaderFilterRegex: "src/.*"
CheckOptions:
- key: readability-identifier-length.MinimumVariableNameLength
value: "2"
- key: readability-identifier-length.MinimumParameterNameLength
value: "2"