forked from project-topaz/topaz
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.clang-tidy
More file actions
26 lines (26 loc) · 682 Bytes
/
.clang-tidy
File metadata and controls
26 lines (26 loc) · 682 Bytes
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
---
# https://clang.llvm.org/extra/clang-tidy/checks/list.html
Checks: >
-*,
bugprone-*,
-bugprone-reserved-identifier,
cert-flp30-c,
cert-mem57-cpp,
cert-oop57-cpp,
cert-oop58-cpp,
clang-analyzer-*,
readability-*,
readability-braces-around-statements,
-readability-magic-numbers,
-readability-convert-member-functions-to-static,
-readability-implicit-bool-conversion,
-readability-uppercase-literal-suffix,
modernize-*,
-modernize-use-trailing-return-type,
performance-*,
cppcoreguidelines-pro-type-cstyle-cast,
cppcoreguidelines-pro-type-static-cast-downcast,
WarningsAsErrors: ''
HeaderFilterRegex: '/src/*'
AnalyzeTemporaryDtors: false
...