-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.clang-tidy
More file actions
42 lines (41 loc) · 816 Bytes
/
Copy path.clang-tidy
File metadata and controls
42 lines (41 loc) · 816 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
37
38
39
40
41
42
Checks:
[
performance*,
modernize*,
readability*,
concurrency*,
clang-analyzer*,
hicpp*,
cert*,
google*,
clang-diagnostic*,
bugprone*,
portability*,
cppcoreguidelines*,
]
ExtraArgsBefore:
[
-xc++,
-stdlib=libstdc++,
-std=c++latest,
-std=c++2b,
-std=c++23,
-std=gnu++2b
-stdlib=libc++
-I/usr/local/include/,
-I/usr/include/c++/13,
-I/usr/include/c++/14,
-I/usr/local/include,
-Wno-unknown-warning-option,
-Wall,
]
WarningsAsErrors: "*"
HeaderFileExtensions: ["h", "hh", "hpp", "hxx"]
ImplementationFileExtensions: ["c", "cc", "cpp", "cxx"]
FormatStyle: Google
InheritParentConfig: true
User: neudinger
UseColor: true
SystemHeaders: true
CheckOptions:
readability-identifier-naming.VariableCase: lower_case