-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy path.clang-tidy
More file actions
25 lines (25 loc) · 1.56 KB
/
.clang-tidy
File metadata and controls
25 lines (25 loc) · 1.56 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
---
Checks: 'clang-diagnostic-*,clang-analyzer-*,performance-*,modernize-*,readability-*,bugprone-*,misc-include-cleaner,-bugprone-easily-swappable-parameters,-bugprone-narrowing-conversions,-modernize-avoid-c-arrays,-readability-magic-numbers,-modernize-use-trailing-return-type,-readability-uppercase-literal-suffix,-readability-qualified-auto,-readability-function-cognitive-complexity,-bugprone-implicit-widening-of-multiplication-result,-modernize-use-default-member-init,-clang-analyzer-optin.portability.UnixAPI,-clang-analyzer-optin.cplusplus.UninitializedObject,-readability-identifier-length,-bugprone-exception-escape,-performance-enum-size,-readability-math-missing-parentheses,-performance-noexcept-swap,-readability-use-concise-preprocessor-directives,-modernize-use-nodiscard,-modernize-concat-nested-namespaces'
WarningsAsErrors: ''
HeaderFilterRegex: 'oqmc'
FormatStyle: file
CheckOptions:
- key: readability-identifier-naming.ClassCase
value: CamelCase
- key: readability-identifier-naming.StructCase
value: CamelCase
- key: readability-identifier-naming.TemplateParameterCase
value: CamelCase
- key: readability-identifier-naming.FunctionCase
value: camelBack
- key: readability-identifier-naming.VariableCase
value: camelBack
- key: readability-identifier-naming.MethodCase
value: camelBack
- key: readability-identifier-naming.MemberCase
value: camelBack
- key: readability-identifier-naming.MacroDefinitionCase
value: UPPER_CASE
- key: readability-identifier-naming.GlobalConstantCase
value: camelBack
...