-
Notifications
You must be signed in to change notification settings - Fork 0
/
.clang-tidy
36 lines (33 loc) · 1.26 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-*,
-google-build-using-namespace,
-abseil*,
-modernize-use-trailing-return-type,
-readability-implicit-bool-conversion,
-*-non-private-member-variables-in-classes,
-*-magic-numbers,
-readability-identifier-length,
-concurrency-mt-unsafe,
-llvm-header-guard,
-fuchsia-default-arguments-calls,
-fuchsia-default-arguments-declarations,
-fuchsia-overloaded-operator,
-android-cloexec-accept,
-misc-include-cleaner,
-readability-redundant-declaration
WarningsAsErrors:
'*'
CheckOptions:
- { key: hicpp-signed-bitwise.IgnorePositiveIntegerLiterals, value: true }
- { key: readability-identifier-naming.EnumConstantCase, value: lower_case }
- { key: readability-identifier-naming.ClassMemberCase, value: lower_case }
- { key: readability-identifier-naming.ConstantMemberCase, value: lower_case }
- { key: readability-identifier-naming.ConstantMemberSuffix, value: _ }
- { key: readability-identifier-naming.ClassMemberSuffix, value: _ }
- { key: readability-identifier-naming.FunctionCase, value: lower_case }
- { key: readability-identifier-naming.ConstantCase, value: lower_case }
- { key: readability-identifier-naming.VariableCase, value: lower_case }
FormatStyle: file