forked from RobotLocomotion/drake
-
Notifications
You must be signed in to change notification settings - Fork 1
/
.clang-tidy
26 lines (25 loc) · 1.05 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
26
---
# This file is not used by CI and the checks included are not part of the Drake style guide
Checks: >
clang-analyzer-*,
clang-diagnostic-*,
cppcoreguidelines-*,
google-*,
modernize-*,
performance-*,
readability-*,
-cppcoreguidelines-pro-bounds-array-to-pointer-decay,
-cppcoreguidelines-pro-bounds-pointer-arithmetic,
-cppcoreguidelines-pro-type-static-cast-downcast,
-modernize-use-bool-literals,
-modernize-use-transparent-functors,
-modernize-use-using,
-readability-else-after-return,
-readability-named-parameter,
CheckOptions:
- { key: readability-identifier-naming.ClassCase, value: CamelCase }
- { key: readability-identifier-naming.NamespaceCase, value: lower_case }
- { key: readability-identifier-naming.PrivateMemberSuffix, value: '_' }
- { key: readability-identifier-naming.StructCase, value: CamelCase }
- { key: readability-identifier-naming.VariableCase, value: lower_case }
...