forked from facebookresearch/habitat-sim
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.clang-tidy
21 lines (20 loc) · 822 Bytes
/
.clang-tidy
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
Checks: '
google-*,
-*-objc-*,
-*.cocoa.*,
-clang-analyzer-core.NullDereference,
-clang-analyzer-optin.cplusplus.UninitializedObject,
-clang-analyzer-optin.cplusplus.VirtualCall,
-clang-analyzer-security.insecureAPI.rand,
-google-default-arguments,
-google-readability-braces-around-statements,
-google-readability-todo,
-google-runtime-references
'
# Let deprecation warnings through. From time to time, Magnum annotates APIs
# with deprecation warnings, suggesting people to upgrade to newer / better
# designed / more flexible APIs. Treating such warnings as error is
# counterproductive, since the first thing you want to do after an upgrade is
# compiling existing *unchanged* code and ensuring all tests pass, and only
# then start updating the code.
WarningsAsErrors: '*,-clang-diagnostic-deprecated-declarations'