forked from ON4QZ/QSSTV
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.clangd
More file actions
46 lines (41 loc) · 1.03 KB
/
.clangd
File metadata and controls
46 lines (41 loc) · 1.03 KB
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
45
46
---
# Clangd configuration for QSSTV
# Provides IDE integration for code analysis
CompileFlags:
# Use compile_commands.json from build directory
CompilationDatabase: build/
Diagnostics:
# Show all clang-tidy checks
ClangTidy:
Add:
- bugprone-*
- cert-*
- modernize-*
- performance-*
- readability-*
Remove:
- bugprone-easily-swappable-parameters
- bugprone-narrowing-conversions
- bugprone-reserved-identifier
- cert-dcl37-c
- cert-dcl51-cpp
- modernize-use-trailing-return-type
- modernize-use-nodiscard
- performance-enum-size
- readability-magic-numbers
- readability-identifier-length
- readability-function-cognitive-complexity
# Suppress warnings from system headers and third-party libraries
UnusedIncludes: Strict
MissingIncludes: None
Suppress:
- /usr/local/*
- /usr/include/*
- /Library/Frameworks/*
- '*/Qt*/*'
InlayHints:
Enabled: Yes
ParameterNames: Yes
DeducedTypes: Yes
Hover:
ShowAKA: Yes