generated from jamesnulliu/VSC-Python-Project-Template
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.clangd
More file actions
53 lines (48 loc) · 1.39 KB
/
.clangd
File metadata and controls
53 lines (48 loc) · 1.39 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
47
48
49
50
51
52
53
CompileFlags:
Add:
- -std=c++20
- --no-cuda-version-check
Remove:
- -ccbin
- -forward-unknown-to-host-compiler
- -rdc=true
- -gencode
- --generate-code*
- -Xcudafe
- --diag_suppress=*
- --expt-relaxed-constexpr
- --expt-extended-lambda
- -Xcompiler*
- -arch=*
Index:
Background: Build
StandardLibrary: Yes
Diagnostics:
UnusedIncludes: None
MissingIncludes: None
ClangTidy:
Add: [
performance-*,
modernize-*,
clang-analyzer-*,
readability-*,
]
Remove: [
readability-isolate-declaration,
readability-identifier-length,
readability-magic-numbers,
readability-function-cognitive-complexity,
modernize-avoid-c-arrays,
readability-math-missing-parentheses,
]
CheckOptions:
readability-identifier-naming.VariableCase: aNy_CasE
readability-identifier-naming.ProtectedMemberCase: aNy_CasE
readability-identifier-naming.PrivateMemberCase: aNy_CasE
readability-identifier-naming.PublicMemberCase: aNy_CasE
readability-identifier-naming.NamespaceCase: lower_case
readability-identifier-naming.EnumCase: CamelCase
readability-identifier-naming.ClassCase: CamelCase
readability-identifier-naming.StructCase: CamelCase
readability-identifier-naming.FunctionCase: camelBack
readability-identifier-naming.ClassMethodCase: camelBack