/ .vscode / settings.json
settings.json
 1  {
 2    "Lua.runtime.version": "Lua 5.2",
 3    "Lua.diagnostics.globals": [
 4      "bit",
 5      "colors",
 6      "colours",
 7      "commands",
 8      "disk",
 9      "fs",
10      "gps",
11      "help",
12      "http",
13      "keys",
14      "multishell",
15      "paintutils",
16      "parallel",
17      "peripheral",
18      "pocket",
19      "rednet",
20      "redstone",
21      "rs",
22      "settings",
23      "shell",
24      "term",
25      "textutils",
26      "turtle",
27      "vector",
28      "window",
29      "_CC_DEFAULT_SETTINGS",
30      "_HOST",
31      "printError",
32      "write",
33      "read",
34      "sleep"
35    ],
36    "Lua.runtime.builtin": {
37      "bit32": "enable",
38      "bit": "disable",
39      "utf8": "enable"
40    },
41    "Lua.diagnostics.disable": ["undefined-field", "deprecated"],
42    "json.schemas": [
43      {
44        "fileMatch": ["*.schema.json"],
45        "url": "https://json-schema.org/draft/2020-12/schema"
46      }
47    ],
48    "yaml.schemas": {
49      "https://json.schemastore.org/github-issue-config.json": "file:///home/creid/Documents/Lua/ToastCo/clients/Spino/roulette/.github/ISSUE_TEMPLATE/config.yml"
50    }
51  }