-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.clang-tidy
20 lines (20 loc) · 892 Bytes
/
.clang-tidy
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
Checks: >
*,
-google*,
-fuchsia*,
-llvm*,
-altera*,
-bugprone-easily-swappable-parameters,
-hicpp-braces-around-statements,
-hicpp-uppercase-literal-suffix,
-modernize-use-trailing-return-type,
-readability-braces-around-statements,
-readability-redundant-access-specifiers,
-readability-implicit-bool-conversion,
-readability-uppercase-literal-suffix,
-cppcoreguidelines-pro-bounds-pointer-arithmetic,
-cppcoreguidelines-pro-type-reinterpret-cast,
CheckOptions:
- { key: hicpp-signed-bitwise.IgnorePositiveIntegerLiterals, value: 1 }
- { key: misc-non-private-member-variables-in-classes.IgnoreClassesWithAllMemberVariablesBeingPublic, value: 1 }
- { key: readability-identifier-length.IgnoredExceptionVariableNames, value: ^[euv]$ }