update luacheck args and copied lua extension configs to workspace

This commit is contained in:
Mikayla Fischler
2023-04-17 15:40:30 -04:00
parent 14dc814925
commit 93776a0421
2 changed files with 30 additions and 22 deletions

38
.vscode/settings.json vendored
View File

@@ -1,22 +1,26 @@
{
"Lua.diagnostics.globals": [
"term",
"fs",
"peripheral",
"rs",
"bit",
"parallel",
"colors",
"textutils",
"shell",
"settings",
"window",
"read",
"periphemu",
"_HOST",
"http"
"bit",
"colors",
"fs",
"http",
"parallel",
"periphemu",
"peripheral",
"read",
"rs",
"settings",
"shell",
"term",
"textutils",
"window"
],
"Lua.diagnostics.disable": [
"duplicate-set-field"
]
"Lua.diagnostics.severity": {
"unused-local": "Information",
"unused-vararg": "Information",
"unused-function": "Information",
"unused-label": "Information"
},
"Lua.hint.setType": true
}