-
-
Notifications
You must be signed in to change notification settings - Fork 421
Expand file tree
/
Copy path.clangd
More file actions
38 lines (30 loc) · 994 Bytes
/
.clangd
File metadata and controls
38 lines (30 loc) · 994 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
CompileFlags:
# Use compile_commands.json from cmake-build directory
CompilationDatabase: cmake-build
Diagnostics:
# clangd will read clang-tidy configuration from .clang-tidy file
# This ensures consistency between editor analysis and build-time analysis
ClangTidy:
# No checks specified here - they are all defined in .clang-tidy
# This allows a single source of truth for all clang-tidy configuration
Add: []
Remove: []
# Suppress warnings from system headers and dependencies
UnusedIncludes: Strict
# clangd respects the HeaderFilterRegex from .clang-tidy
# No additional suppression needed here
Suppress: []
InlayHints:
# Show inline hints for better code understanding
Enabled: Yes
ParameterNames: Yes
DeducedTypes: Yes
Designators: Yes
Hover:
ShowAKA: Yes
Completion:
AllScopes: Yes
Index:
# Background indexing mode: Build (index as you build) or Skip (no background indexing)
Background: Build
StandardLibrary: Yes