2020-08-15 18:26:48 +02:00
|
|
|
{
|
|
|
|
"files.eol": "\n",
|
|
|
|
"files.insertFinalNewline": true,
|
2020-08-18 00:07:13 +02:00
|
|
|
"editor.rulers": [120],
|
2020-08-18 01:28:37 +02:00
|
|
|
"clang-tidy.compilerArgs": [
|
|
|
|
"-std=gnu89",
|
|
|
|
"-Iinclude",
|
|
|
|
"-Iinclude/PR",
|
2021-04-24 20:56:22 +02:00
|
|
|
"-Iver/current/build/include",
|
2020-08-18 01:28:37 +02:00
|
|
|
"-Isrc",
|
|
|
|
"-D_LANGUAGE_C",
|
2021-04-24 20:56:22 +02:00
|
|
|
"-Wall"
|
2020-08-18 01:28:37 +02:00
|
|
|
],
|
2020-11-10 12:25:36 +01:00
|
|
|
"clang-tidy.blacklist": [
|
2021-01-17 15:40:02 +01:00
|
|
|
"include/PR",
|
|
|
|
"include/gcc"
|
2020-11-10 12:25:36 +01:00
|
|
|
],
|
2020-10-20 23:26:27 +02:00
|
|
|
"git.ignoreLimitWarning": true,
|
2020-10-28 21:57:00 +01:00
|
|
|
"search.exclude": {
|
2021-02-22 10:21:23 +01:00
|
|
|
"**/build/src": true,
|
2020-10-28 21:57:00 +01:00
|
|
|
"docs/doxygen": true,
|
2021-02-22 10:21:23 +01:00
|
|
|
"ctx.c": true,
|
2021-02-26 16:36:33 +01:00
|
|
|
"ver/current": true,
|
2021-03-12 16:53:11 +01:00
|
|
|
"ver/us/build": true,
|
|
|
|
"ver/jp/build": true,
|
2021-09-22 13:17:46 +02:00
|
|
|
"expected": true,
|
|
|
|
"**/*.i": true,
|
2020-10-28 21:57:00 +01:00
|
|
|
},
|
2020-11-11 14:52:04 +01:00
|
|
|
"python.autoComplete.extraPaths": [
|
|
|
|
"./tools"
|
|
|
|
],
|
2020-11-29 17:52:16 +01:00
|
|
|
"python.analysis.extraPaths": [
|
2022-11-15 15:55:59 +01:00
|
|
|
"./tools",
|
|
|
|
"./tools/build/sprite",
|
|
|
|
"./tools/splat"
|
2020-11-29 17:52:16 +01:00
|
|
|
],
|
2020-12-24 12:15:05 +01:00
|
|
|
"[c]": {
|
|
|
|
"editor.wordSeparators": "`~!@#%^&*()-=+[{]}\\|;:'\",.<>/?", // no $, for scripts
|
|
|
|
},
|
2020-12-28 08:09:39 +01:00
|
|
|
"files.associations": {
|
2021-02-05 14:49:50 +01:00
|
|
|
"*.h": "c",
|
2020-12-28 08:09:39 +01:00
|
|
|
},
|
2021-02-22 10:21:23 +01:00
|
|
|
"C_Cpp.autoAddFileAssociations": false,
|
|
|
|
"files.exclude": {
|
|
|
|
"**/.git": true,
|
|
|
|
"**/.splat_cache": true,
|
|
|
|
".ninja*": true,
|
2022-03-30 14:07:13 +02:00
|
|
|
"ver/current": true,
|
|
|
|
"expected": true,
|
|
|
|
"**/*.i": true,
|
2022-10-06 02:06:09 +02:00
|
|
|
"docs/doxygen": true
|
2022-03-10 10:55:38 +01:00
|
|
|
},
|
|
|
|
"C_Cpp.default.cStandard": "c89",
|
2020-08-15 18:26:48 +02:00
|
|
|
}
|