-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path.clang-tidy
26 lines (26 loc) · 1 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
---
# SPDX-License-Identifier: CC0-1.0
# SPDX-FileCopyrightText: 2018-2020 Collabora, Ltd. and the Monado contributors
# Ideally we'd turn back on a few of these that are disabled near the end
Checks: 'clang-diagnostic-*,
clang-analyzer-*,
performance-*,
bugprone-*,
cert-*,
readability-*,
misc-*,
-modernize-*,
-clang-analyzer-security.insecureAPI.strcpy,
-bugprone-macro-parentheses,
-readability-braces-around-statements,
-misc-unused-parameters,
-readability-implicit-bool-conversion,
-clang-diagnostic-missing-field-initializers,
-clang-diagnostic-missing-braces,
-readability-uppercase-literal-suffix,
-misc-non-private-member-variables-in-classes'
WarningsAsErrors: ''
HeaderFilterRegex: 'src/xrt/.*'
AnalyzeTemporaryDtors: false
FormatStyle: file
...