Starship/.vscode/settings.json

49 lines
1.2 KiB
JSON
Raw Normal View History

2023-10-06 09:10:31 +03:00
{
"python.formatting.autopep8Args": [
"--ignore",
"E402"
],
"search.useIgnoreFiles": false,
"search.exclude": {
"**/.git": true,
"**/.github": true,
"build/**": true,
"expected/**": true,
"tools/**": true,
"tools/aspatch/**": false,
"tools/gfxsotn/**": false,
},
2023-10-17 23:08:15 +03:00
"defines": [
"_LANGUAGE_C", // For gbi.h
2023-10-17 23:08:15 +03:00
],
2023-10-06 09:10:31 +03:00
"files.associations": {
2023-10-18 22:32:17 +03:00
"hud.h": "c",
"global.h": "c",
"ultratypes.h": "c",
"mbi.h": "c",
"common.h": "c",
"sf64math.h": "c",
"ultra64.h": "c",
"os_internal.h": "c",
"structs.h": "c",
"stdint.h": "c",
"xstdio.h": "c",
"controller.h": "c",
"os_version.h": "c",
"stdbool.h": "c",
"variables.h": "c",
"functions.h": "c",
"macros.h": "c",
"random": "c",
"limits": "c",
"algorithm": "c",
"dfee30.h": "c",
"df4260.h": "c",
"symbol_addrs_overlays": "cpp",
"fox_option.h": "c",
"cstdlib": "c",
"typeinfo": "c",
"sym_addrs_funcs": "c",
"*.txt": "c"
2023-10-06 09:10:31 +03:00
},
}