forked from lucavallin/barco
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.clang-tidy
44 lines (44 loc) · 958 Bytes
/
.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
32
33
34
35
36
37
38
39
40
41
42
43
44
---
ExtraArgs:
[
"-std=gnu17",
"-D _GNU_SOURCE 1",
"-D __STDC_WANT_LIB_EXT1__",
"-I./include",
"-I./lib/log",
"-I./lib/argtable",
]
HeaderFileExtensions:
- h
HeaderFilterRegex: "./include/*"
ImplementationFileExtensions:
- c
FormatStyle: file
Checks: "-*,\
bugprone-*,\
-bugprone-easily-swappable-parameters, \
-bugprone-assignment-in-if-condition, \
-bugprone-reserved-identifier, \
cert-*,\
-cert-msc30-c, \
-cert-msc32-c, \
-cert-msc50-cpp, \
-cert-msc51-cpp, \
-cert-dcl37-c, \
-cert-dcl51-cpp,
clang-analyzer-*,\
-clang-analyzer-security.insecureAPI.DeprecatedOrUnsafeBufferHandling,\
concurrency-*,\
-concurrency-mt-unsafe, \
linuxkernel-*,\
llvm-*,\
-llvm-header-guard, \
misc-*,\
modernize-*,\
-modernize-use-trailing-return-type, \
-modernize-use-using, \
performance-*,\
-performance-enum-size, \
portability-*,\
readability-*, \
-readability-identifier-length"