4
0

add vscode config
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful

This commit is contained in:
2025-12-10 22:43:30 +01:00
parent 0230578452
commit cb95285c2a
2 changed files with 19 additions and 1 deletions

1
.gitignore vendored
View File

@@ -1,2 +1 @@
.vscode
mranderson.lua

19
.vscode/settings.json vendored Normal file
View File

@@ -0,0 +1,19 @@
{
"Lua.diagnostics.globals": [
"rect",
"exit",
"spr"
],
"Lua.workspace.library": [
"./inc"
],
"Lua.runtime.path": [
"?.lua",
"?/init.lua",
"inc/?.lua"
],
"Lua.diagnostics.disable": [
"undefined-global"
]
}