forked from FAForever/fa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.json
39 lines (38 loc) · 945 Bytes
/
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
{
"Lua.runtime.nonstandardSymbol": [
"continue",
"!="
],
"Lua.completion.showWord": "Disable",
"Lua.runtime.special": {
"import": "require",
"doscript": "require",
"lazyimport": "require"
},
"Lua.runtime.version": "Lua 5.1",
"Lua.telemetry.enable": false,
"Lua.workspace.checkThirdParty": false,
"Lua.runtime.path": [
"/?"
],
"Lua.runtime.plugin": ".vscode/fa-plugin.lua",
"Lua.workspace.ignoreDir": [
".vscode",
"loc",
"*.bp"
],
"[lua]": {
"editor.wordBasedSuggestions": false,
},
"files.associations": {
"*.bp": "lua"
},
"Lua.completion.requireSeparator": "/",
"Lua.diagnostics.enable": true,
"Lua.runtime.pathStrict": false,
"Lua.runtime.exportEnvDefault": true,
"Lua.completion.autoRequire": false,
"Lua.diagnostics.globals": [
"ScenarioInfo"
],
}