2020-08-15 18:26:48 +02:00
|
|
|
{
|
|
|
|
"files.eol": "\n",
|
|
|
|
"files.insertFinalNewline": true,
|
2023-06-26 12:27:37 +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": {
|
2023-02-14 14:14:14 +01:00
|
|
|
"**/*.i": true,
|
2021-02-22 10:21:23 +01:00
|
|
|
"**/build/src": true,
|
|
|
|
"ctx.c": true,
|
2023-02-14 14:14:14 +01:00
|
|
|
"docs/doxygen": true,
|
2021-09-22 13:17:46 +02:00
|
|
|
"expected": true,
|
2023-02-14 14:14:14 +01:00
|
|
|
"ver/jp/expected": true,
|
|
|
|
"ver/us/expected": 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",
|
2023-07-10 07:57:27 +02:00
|
|
|
"./tools/build",
|
2022-11-15 15:55:59 +01:00
|
|
|
"./tools/build/sprite",
|
2023-06-26 12:27:37 +02:00
|
|
|
"./tools/splat",
|
|
|
|
"./tools/build/imgfx"
|
2020-11-29 17:52:16 +01:00
|
|
|
],
|
2020-12-24 12:15:05 +01:00
|
|
|
"[c]": {
|
|
|
|
"editor.wordSeparators": "`~!@#%^&*()-=+[{]}\\|;:'\",.<>/?", // no $, for scripts
|
2023-05-01 22:07:31 +02:00
|
|
|
"editor.formatOnSave": false, // TODO: enable this once we solve EVTs, see #1004
|
|
|
|
"editor.formatOnSaveMode": "modifications",
|
|
|
|
"editor.defaultFormatter": "xaver.clang-format",
|
2020-12-24 12:15:05 +01:00
|
|
|
},
|
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",
|
2023-06-26 12:27:37 +02:00
|
|
|
"python.linting.mypyEnabled": true,
|
|
|
|
"python.linting.enabled": true,
|
2020-08-15 18:26:48 +02:00
|
|
|
}
|