-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path.clang-tidy
More file actions
39 lines (38 loc) · 1.13 KB
/
Copy path.clang-tidy
File metadata and controls
39 lines (38 loc) · 1.13 KB
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
37
38
39
---
Checks: >
clang-analyzer-*,
modernize-use-default-member-init,
modernize-use-equals-default,
modernize-use-scoped-lock,
readability-braces-around-statements,
readability-simplify-boolean-expr,
readability-redundant-member-init,
performance-avoid-endl,
-clang-diagnostic-*,
-performance-enum-size,
-modernize-use-trailing-return-type,
-readability-magic-numbers,
-readability-identifier-length,
-modernize-use-nodiscard,
-readability-function-cognitive-complexity,
-modernize-return-braced-init-list,
-modernize-use-equals-delete
WarningsAsErrors: ''
HeaderFilterRegex: '.*'
FormatStyle: file
CheckOptions:
- key: readability-identifier-naming.ClassCase
value: CamelCase
- key: readability-identifier-naming.FunctionCase
value: camelCase
- key: readability-identifier-naming.VariableCase
value: snake_case
- key: readability-identifier-naming.ConstantCase
value: UPPER_CASE
- key: readability-identifier-naming.NamespaceCase
value: lower_case
- key: readability-identifier-naming.EnumCase
value: CamelCase
- key: readability-identifier-naming.EnumConstantCase
value: UPPER_CASE
...