-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.clang-tidy
25 lines (25 loc) · 1.28 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*,
modernize*,
bugprone*,
performance*,
clang-analyzer-*,
portability-*,
-modernize-use-trailing-return-type,
-modernize-avoid-c-arrays,
-readability-uppercase-literal-suffix,
-readability-magic-numbers,
-readability-const-return-type,
-readability-static-accessed-through-instance'
CheckOptions:
- { key: readability-identifier-naming.LocalVariableCase, value: lower_case }
- { key: readability-identifier-naming.NamespaceCase, value: lower_case }
- { key: readability-identifier-naming.ClassCase, value: lower_case }
- { key: readability-identifier-naming.StructCase, value: lower_case }
- { key: readability-identifier-naming.FunctionCase, value: lower_case }
- { key: readability-identifier-naming.VariableCase, value: lower_case }
- { key: readability-identifier-naming.ClassMemberCase, value: lower_case }
- { key: readability-identifier-naming.MemberCase, value: lower_case }
- { key: readability-identifier-naming.ParameterCase, value: lower_case }
- { key: readability-identifier-naming.ConstexprVariableCase, value: lower_case }
- { key: readability-identifier-naming.GlobalConstantCase, value: lower_case }