-
Notifications
You must be signed in to change notification settings - Fork 0
/
.clang-tidy
36 lines (34 loc) · 1.09 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
---
Checks: >
*,
-altera-*,
-llvmlibc-*,
-llvm-header-guard,
-llvm-include-order,
-google-*,
-abseil-*,
-fuchsia-*,
-android-*,
-modernize-*,
-hicpp*,
-cppcoreguidelines-*,
-readability-implicit-bool-conversion,
-readability-named-parameter,
-readability-isolate-declaration,
-readability-braces-around-statements,
-readability-identifier-length,
-performance-no-int-to-ptr,
-*-non-private-member-variables-in-classes,
-*-magic-numbers,
-concurrency-*,
-clang-analyzer-security*,
-Wpointer-bool-conversion
CheckOptions:
- { key: hicpp-signed-bitwise.IgnorePositiveIntegerLiterals, value: true }
- { key: readability-identifier-naming.FunctionCase, value: lower_case }
- { key: readability-identifier-naming.VariableCase, value: lower_case }
- { key: readability-identifier-naming.EnumCase, value: lower_case }
- { key: readability-function-cognitive-complexity.IgnoreMacros, value: true }
- { key: misc-non-private-member-variables-in-classes.IgnoreClassesWithAllMemberVariablesBeingPublic, value: true }
FormatStyle: file
---