-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.clangd
39 lines (39 loc) · 1003 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
{
"CompileFlags": {
"Add": [
"-xc",
"-std=gnu89",
"-ferror-limit=0",
"-DLUA_32BITS",
"-DLUA_USE_C89",
"-DLUA_USE_JUMPTABLE=0",
"-U__LP64__",
"-Wno-comment",
"-Wno-pragma-pack",
"-Wno-include-hygiene",
"-Wno-system-headers",
"-nostdinc",
"-isystem/home/mike/repos/crent370/include",
"-isystem/home/mike/repos/crent370/thdmgr",
"-isystem/home/mike/repos/crent370/time64",
"-isystem/home/mike/repos/httpd_cgi_sdk/inc",
"-I/home/mike/repos/mvsmf/inc"
]
},
"Diagnostics": {
"ClangTidy": {
"Add": ["*"],
"Remove": [
"llvmlibc-restrict-system-libc-headers",
"llvm-include-order",
"modernize-deprecated-headers",
"hicpp-no-assembler",
"altera-unroll-loops",
"bugprone-easily-swappable-parameters",
"bugprone-not-null-terminated-result",
"readability-identifier-length"
]
},
"UnusedIncludes": "Strict"
}
}