forked from ZwerOxotnik/factorio-example-mod
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.json
78 lines (78 loc) · 1.59 KB
/
settings.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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"editor.suggestSelection": "recentlyUsedByPrefix",
"editor.suggest.showWords": false,
"lua.targetVersion": "5.2",
"Lua.runtime.version": "Lua 5.2",
"Lua.workspace.preloadFileSize": 1600,
"Lua.diagnostics.globals": [
"game",
"script",
"remote",
"commands",
"settings",
"rcon",
"rendering",
"global",
"log",
"defines",
"data",
"mods",
"serpent",
"table_size",
"bit32",
"util",
"localised_print",
"circuit_connector_definitions",
"universal_connector_template",
"__DebugAdapter",
"__Profiler"
],
"Lua.workspace.ignoreDir": [
".vscode",
".github",
".script",
"locale"
],
"Lua.runtime.builtin": {
"basic": "enable",
"builtin": "enable",
"table": "enable",
"math": "enable",
"string": "enable",
"package": "enable",
"debug": "enable",
"bit32": "enable",
"io": "disable",
"jit": "disable",
"bit": "disable",
"coroutine": "disable",
"ffi": "disable",
"os": "disable",
"utf8": "disable"
},
"Lua.workspace.library": [
"script",
"rendering",
"game",
"commands"
],
"Lua.intelliSense.searchDepth": 3,
"Lua.diagnostics.workspaceDelay": 50,
"git.autofetch": "all",
"markdownlint.config": {
"MD033": false,
"MD034": false,
},
"restructuredtext.confPath": "${workspaceFolder}\\predocs",
"restructuredtext.builtDocumentationPath" : "${workspaceFolder}/docs/_build/html",
"restructuredtext.updateOnTextChanged" : "false",
"restructuredtext.updateDelay": 1000,
"Lua.diagnostics.disable": [
"lowercase-global",
"undefined-doc-name",
"undefined-doc-class"
],
"triggerTaskOnSave.tasks": {
"Luacheck": ["*.lua"]
}
}