Newer
Older
Radon / .vscode / settings.json
@Alyssa May Alyssa May on 2 Feb 2023 929 bytes Fix bug causing crashes with 0 products (#5)
{
    "Lua.diagnostics.disable": [
        "unused-local",
        "lowercase-global",
        "unused-function"
    ],
    "Lua.diagnostics.severity": {
        "redefined-local": "Warning"
    },
    "Lua.diagnostics.globals": [
        "printError",
        "sleep",
        "read",
        "write",
        "print",
        "colours",
        "colors",
        "commands",
        "disk",
        "fs",
        "gps",
        "help",
        "http",
        "paintutils",
        "parallel",
        "peripheral",
        "rednet",
        "redstone",
        "keys",
        "settings",
        "shell",
        "multishell",
        "term",
        "textutils",
        "turtle",
        "pocket",
        "vector",
        "bit32",
        "window",
        "_CC_DEFAULT_SETTINGS",
        "_HOST",
        "_VERSION",
        "_"
    ],
    "Lua.runtime.version": "Lua 5.4",
}