forked from maplibre/maplibre-native
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.clang-tidy
31 lines (31 loc) · 1.03 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
27
28
29
30
31
---
Checks: >
modernize-*,
-modernize-avoid-bind,
-modernize-avoid-c-arrays,
-modernize-concat-nested-namespaces,
-modernize-macro-to-enum,
-modernize-pass-by-value,
-modernize-return-braced-init-list,
-modernize-use-auto,
-modernize-use-default-member-init,
-modernize-use-emplace,
-modernize-use-equals-default,
-modernize-use-equals-delete,
-modernize-use-nodiscard,
-modernize-use-nullptr,
-modernize-use-override,
-modernize-use-trailing-return-type,
misc-static-assert,
-clang-analyzer-security.insecureAPI.rand,
-clang-analyzer-core.uninitialized.UndefReturn,
-clang-analyzer-core.StackAddressEscape,
-clang-analyzer-core.CallAndMessage,
-clang-analyzer-deadcode.DeadStores,
-clang-diagnostic-unused-command-line-argument,
-clang-analyzer-core.uninitialized.*,
-clang-analyzer-core.NullDereference,
-clang-analyzer-core.NonNullParamChecker,
-clang-analyzer-optin.cplusplus.UninitializedObject
WarningsAsErrors: '*'
HeaderFilterRegex: '.*'