papermario/.vscode/settings.json
Ethan Roseman 4f77ffbc3e
more pal funcs & npc sprites improvement (#1079)
* cod changes and fixes for npc sprites

* 6 mo

* Cleanup
2023-07-10 14:57:27 +09:00

63 lines
1.6 KiB
JSON

{
"files.eol": "\n",
"files.insertFinalNewline": true,
"editor.rulers": [
120
],
"clang-tidy.compilerArgs": [
"-std=gnu89",
"-Iinclude",
"-Iinclude/PR",
"-Iver/current/build/include",
"-Isrc",
"-D_LANGUAGE_C",
"-Wall"
],
"clang-tidy.blacklist": [
"include/PR",
"include/gcc"
],
"git.ignoreLimitWarning": true,
"search.exclude": {
"**/*.i": true,
"**/build/src": true,
"ctx.c": true,
"docs/doxygen": true,
"expected": true,
"ver/jp/expected": true,
"ver/us/expected": true
},
"python.autoComplete.extraPaths": [
"./tools"
],
"python.analysis.extraPaths": [
"./tools",
"./tools/build",
"./tools/build/sprite",
"./tools/splat",
"./tools/build/imgfx"
],
"[c]": {
"editor.wordSeparators": "`~!@#%^&*()-=+[{]}\\|;:'\",.<>/?", // no $, for scripts
"editor.formatOnSave": false, // TODO: enable this once we solve EVTs, see #1004
"editor.formatOnSaveMode": "modifications",
"editor.defaultFormatter": "xaver.clang-format",
},
"files.associations": {
"*.h": "c",
},
"C_Cpp.autoAddFileAssociations": false,
"files.exclude": {
"**/.git": true,
"**/.splat_cache": true,
".ninja*": true,
"ver/current": true,
"expected": true,
"**/*.i": true,
"docs/doxygen": true
},
"C_Cpp.default.cStandard": "c89",
"python.linting.mypyEnabled": true,
"python.linting.enabled": true,
}