mirror of
https://github.com/pmret/papermario.git
synced 2024-11-08 12:02:30 +01:00
683d0857ff
* fix ld warnings * fix NpcSettings warn * get_screen_coords * various * bloop * update INSTALL.md for versioned baseroms
49 lines
1.1 KiB
JSON
49 lines
1.1 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",
|
|
"-DSCRIPT(...)={}",
|
|
"-Wall"
|
|
],
|
|
"clang-tidy.blacklist": [
|
|
"include/PR",
|
|
"include/gcc"
|
|
],
|
|
"git.ignoreLimitWarning": true,
|
|
"search.exclude": {
|
|
"**/build/src": true,
|
|
"docs/doxygen": true,
|
|
"ctx.c": true,
|
|
"ver/current": true,
|
|
"ver/us/build": true,
|
|
"ver/jp/build": true,
|
|
"expected": true
|
|
},
|
|
"python.autoComplete.extraPaths": [
|
|
"./tools"
|
|
],
|
|
"python.analysis.extraPaths": [
|
|
"./tools"
|
|
],
|
|
"[c]": {
|
|
"editor.wordSeparators": "`~!@#%^&*()-=+[{]}\\|;:'\",.<>/?", // no $, for scripts
|
|
},
|
|
"files.associations": {
|
|
"*.h": "c",
|
|
},
|
|
"C_Cpp.autoAddFileAssociations": false,
|
|
"files.exclude": {
|
|
"**/.git": true,
|
|
"**/.splat_cache": true,
|
|
".ninja*": true,
|
|
"ver/current": true
|
|
}
|
|
}
|