-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy path.clang-tidy
More file actions
36 lines (36 loc) · 930 Bytes
/
.clang-tidy
File metadata and controls
36 lines (36 loc) · 930 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
27
28
29
30
31
32
33
34
35
36
---
Checks: '*,-abseil-*,-altera-*,-fuchsia-*,-cppcoreguidelines-avoid-magic-numbers,-google-runtime-references,-llvmlibc-*,-misc-include-cleaner,-readability-implicit-bool-conversion,-readability-magic-numbers'
#
# For a list of check options, see:
# https://clang.llvm.org/extra/clang-tidy/checks/list.html
#
# Disabled checks:
#
# abseil-*
# We are not using abseil.
#
# altera-*
# Doesn't apply.
#
# cppcoreguidelines-avoid-magic-numbers
# readability-magic-numbers
# Generally good advice, but there are too many places where this is
# useful, for instance in tests.
#
# fuchsia-*
# Much too strict.
#
# google-runtime-references
# This is just a matter of preference.
#
# llvmlibc-*
# Not applicable.
#
# misc-include-cleaner
# Too many reports. Disabled for now.
#
# readability-implicit-bool-conversion
# I don't think this makes the code more readable.
#
#WarningsAsErrors: '*'
...