-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path.clang-tidy
25 lines (24 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
Checks: "
-readability-magic-numbers
-readability-braces-around-statements
readability-*,
portability-*,
performance-*,
cppcoreguidelines-*
modernize-use-no-discard,
modernize-use-auto
clang-analyzer-cplusplus
"
WarningsAsErrors: '*'
HeaderFilterRegex: ''
CheckOptions:
- { key: readability-identifier-naming.StaticConstantPrefix, value: 'k' }
- { key: readability-identifier-naming.StaticConstantCase, value: 'CamelCase' }
- { key: readability-identifier-naming.ConstexprVariablePrefix, value: 'k' }
- { key: readability-identifier-naming.ConstexprVariableCase, value: 'CamelCase' }
- { key: readability-identifier-naming.PrivateMemberPrefix, value: 'm_' }
- { key: readability-identifier-naming.PrivateMemberCase, value: 'camelBack' }
- { key: readability-identifier-naming.VariableCase, value: 'camelBack' }
- { key: readability-identifier-naming.FunctionCase, value: 'camelBack' }
- { key: readability-identifier-naming.ClassCase, value: 'PascalCase' }
- { key: readability-identifier-naming.EnumCase, value: 'PascalCase' }