-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.clang-tidy
19 lines (17 loc) · 1.14 KB
/
.clang-tidy
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
---
Checks: 'bugprone-*,google-*,-google-explicit-constructor,-google-readability-todo,-google-readability-braces-around-statements,-google-runtime-int,readability-identifier-naming,modernize-use-trailing-return-type'
CheckOptions:
- { key: readability-identifier-naming.VariableCase, value: lower_case }
- { key: readability-identifier-naming.MemberCase, value: lower_case }
- { key: readability-identifier-naming.StructCase, value: CamelCase }
- { key: readability-identifier-naming.ClassCase, value: CamelCase }
- { key: readability-identifier-naming.FunctionCase, value: lower_case }
- { key: readability-identifier-naming.NamespaceCase, value: lower_case }
- { key: readability-identifier-naming.PointerParameterPrefix, value: p_ }
- { key: readability-identifier-naming.LocalPointerPrefix, value: p_ }
- { key: readability-identifier-naming.LocalConstantPointerPrefix, value: p_ }
WarningsAsErrors: ''
HeaderFilterRegex: ^src
AnalyzeTemporaryDtors: false
FormatStyle: file
...