Starship/.vscode/settings.json

22 lines
471 B
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-06 09:10:31 +03:00
"files.associations": {
2023-10-18 15:35:05 +03:00
"hud.h": "c"
2023-10-06 09:10:31 +03:00
},
}