-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.clang-tidy
More file actions
32 lines (31 loc) · 1.19 KB
/
Copy path.clang-tidy
File metadata and controls
32 lines (31 loc) · 1.19 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
---
Checks: >
-*,
bugprone-*,
clang-diagnostic-*,
clang-analyzer-*,
cert-*,
cppcoreguidelines-*,
google-*,
hicpp-*,
misc-*,
modernize-*,
-modernize-use-trailing-return-type,
-modernize-avoid-bind,
performance-*,
portability-*,
readability-*
# Turn all the warnings from the checks above into errors.
WarningsAsErrors: '*'
HeaderFilterRegex: 'tea/[A-Za-z]*.hpp'
FormatStyle: none
CheckOptions:
- { key: readability-identifier-naming.StructCase, value: CamelCase }
- { key: readability-identifier-naming.ClassCase, value: CamelCase }
- { key: readability-identifier-naming.ClassMemberCase, value: lower_case }
- { key: readability-identifier-naming.PrivateMemberCase, value: lower_case }
- { key: readability-identifier-naming.PrivateMemberSuffix, value: _ }
- { key: readability-identifier-naming.ParameterCase, value: lower_case }
- { key: readability-identifier-length.MinimumParameterNameLength, value: 0 }
- { key: readability-identifier-length.MinimumVariableNameLength, value: 0 }
- { key: misc-non-private-member-variables-in-classes.IgnoreClassesWithAllMemberVariablesBeingPublic, value: true }