other(dev): Add VSCode extension settings, recommendations

This commit is contained in:
2024-11-18 19:49:27 -06:00
parent f05eebf0bd
commit 9f77570f50
2 changed files with 27 additions and 1 deletions

3
.vscode/extensions.json vendored Normal file
View File

@@ -0,0 +1,3 @@
{
"recommendations": ["justarandomgeek.factoriomod-debug", "sumneko.lua"]
}

25
.vscode/settings.json vendored
View File

@@ -1,3 +1,26 @@
{
"cSpell.words": ["Factorio"]
"cSpell.words": ["conventionalcommits", "Factorio"],
"Lua.diagnostics.globals": [
"game",
"settings",
"script",
"storage",
"prototypes",
"entity",
"defines",
"data",
"rendering",
"mods",
"log",
"util",
"table",
"serpent",
"table_size",
"commands",
"remote",
"__DebugAdapter",
"__Profiler"
],
"Lua.diagnostics.disable": ["lowercase-global"],
"Lua.runtime.version": "Lua 5.2"
}