cartridges/.luarc.json

31 lines
960 B
JSON
Raw Normal View History

2026-02-11 21:44:35 +01:00
{
"$schema": "https://raw.githubusercontent.com/LuaLS/vscode-lua/master/setting/schema.json",
"workspace.checkThirdParty": false,
"workspace.library": ["~/.local/lib/picotron-definitions"],
"runtime.version": "Lua 5.4",
"diagnostics.disable": ["lowercase-global"],
"runtime.nonstandardSymbol": ["!=", "+=", "-=", "*=", "/=", "%=", "^=", "|=", "&=", "<<=", ">>=", "//"],
"runtime.builtin": {
"basic": "enable",
"bit": "disable",
"bit32": "disable",
"builtin": "enable",
"coroutine": "enable",
"debug": "enable",
"ffi": "disable",
"io": "disable",
"jit": "disable",
"math": "enable",
"os": "disable",
"package": "disable",
"string": "enable",
"table": "enable",
"table.clear": "disable",
"table.new": "disable",
"utf8": "enable"
},
"runtime.special": {
"include": "require"
}
}