papermario/.vscode/settings.json
Ethan Roseman d0a7655779
Various dompin (#672)
* partner funcs

* land.c

* filemenu_update

* 190A10.c

* hammer.c dun

* prog rock

* various funcs

* moving

* update_item_entities

* filemenu_yesno_handle_input

* cleanin

* sweeping

* PR comments
2022-03-30 21:07:13 +09:00

54 lines
1.3 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,
"**/*.i": 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,
"expected": true,
"**/*.i": true,
"docs/doxygen": true,
},
"C_Cpp.default.cStandard": "c89",
}