-
-
Notifications
You must be signed in to change notification settings - Fork 4.8k
Expand file tree
/
Copy path.clangd
More file actions
37 lines (30 loc) · 670 Bytes
/
.clangd
File metadata and controls
37 lines (30 loc) · 670 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
# QGroundControl Clangd Configuration
# Language server for C++ code completion and navigation
CompileFlags:
Add:
- "-std=c++20"
- "-Wall"
- "-Wextra"
Remove:
- "-m*" # Remove machine-specific flags
Diagnostics:
# Strict catches real unused includes; Qt/moc false positives are rare enough to accept
UnusedIncludes: Strict
MissingIncludes: None
Suppress:
- "unknown_typename"
- "expansion_to_defined"
Index:
Background: Build
StandardLibrary: No
InlayHints:
Enabled: Yes
ParameterNames: Yes
DeducedTypes: Yes
Designators: Yes
Hover:
ShowAKA: Yes
Completion:
AllScopes: No
Style:
FullyQualifiedNamespaces: No