-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy path.luarc.json
30 lines (30 loc) · 959 Bytes
/
.luarc.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{
"$schema": "https://raw.githubusercontent.com/LuaLS/vscode-lua/master/setting/schema.json",
"workspace.checkThirdParty": false,
"workspace.library": ["~/.local/lib/picotron-definitions"],
"runtime.version": "LuaJIT",
"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"
}
}