-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.clang-tidy
35 lines (35 loc) · 1.11 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
---
Checks: >-
-*,
bugprone-*,
-bugprone-easily-swappable-parameters,
cert-*,
-cert-dcl16-c,
clang-analyzer-*,
concurrency-*,
cppcoreguidelines-*,
-cppcoreguidelines-pro-bounds-pointer-arithmetic,
-cppcoreguidelines-avoid-magic-numbers,
-cppcoreguidelines-pro-type-vararg,
misc-*,
-misc-no-recursion,
modernize-*,
performance-*,
hicpp-*,
-hicpp-braces-around-statements,
-hicpp-uppercase-literal-suffix,
portability-*,
readability-*,
-readability-magic-numbers,
-readability-else-after-return,
-readability-braces-around-statements,
-readability-uppercase-literal-suffix,
-readability-identifier-length
HeaderFilterRegex: ''
FormatStyle: none
CheckOptions:
- { key: readability-identifier-naming.ClassCase, value: CamelCase }
- { key: readability-identifier-naming.StructCase, value: lower_case }
- { key: readability-identifier-naming.VariableCase, value: lower_case }
- { key: readability-identifier-naming.FunctionCase, value: camelBack }
- { key: readability-identifier-naming.ParameterCase, value: lower_case }