Starship/.vscode/settings.json
petrie911 0c7c184d8a
Library split (#5)
* fixed

* and cleanup

* format

* let's all go to the library

* split

* small cleanup
2023-10-19 14:53:47 -03:00

27 lines
599 B
JSON

{
"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,
},
"defines": [
"_LANGUAGE_C" // For gbi.h
],
"files.associations": {
"hud.h": "c",
"global.h": "c",
"ultratypes.h": "c",
"mbi.h": "c",
"common.h": "c",
"sf64math.h": "c"
},
}