-
Notifications
You must be signed in to change notification settings - Fork 0
/
.clangd
44 lines (44 loc) · 859 Bytes
/
.clangd
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
CompileFlags:
CompilationDatabase: build/Debug
Remove:
[
'-mpoke-function-name'
]
Index:
Background: Build
StandardLibrary: Yes
Diagnostics:
Suppress: bugprone-reserved-identifier
UnusedIncludes: Strict
MissingIncludes: Strict
ClangTidy:
Add:
[
performance-*,
bugprone-*,
portability-*,
modernize-*,
clang-analyzer-*,
# readability-*,
cert-*,
]
Remove:
[
modernize-use-trailing-return-type,
# readability-identifier-length,
cert-dcl37-c,
cert-dcl51-cpp,
]
CheckOptions:
readability-identifier-naming.VariableCase: lower_case
Completion:
AllScopes: Yes
InlayHints:
Enabled: Yes
ParameterNames: Yes
DeducedTypes: Yes
Designators: Yes
BlockEnd: No
TypeNameLimit: 24
Hover:
ShowAKA: Yes