forked from EntranceJew/gmod-addons
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.luarc.json
41 lines (41 loc) · 885 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
31
32
33
34
35
36
37
38
39
40
41
{
"$schema": "https://raw.githubusercontent.com/sumneko/vscode-lua/master/setting/schema.json",
"diagnostics.disable": [
"duplicate-set-field",
"unused-local",
"lowercase-global",
"inject-field",
"undefined-field",
"param-type-mismatch",
"cast-local-type"
],
"diagnostics.globals": [
"GM",
"BaseClass",
"CLGAMEMODEMENU",
"CLGAMEMODESUBMENU",
"CLSCOREMENU",
"EVENT",
"TEXFILTER",
"CreateVFireBall",
"AMMO_SMOKE",
"WEAPON_NADE",
"WEAPON_TYPE_NADE",
"AMMO_DISCOMB",
"AMMO_MOLOTOV",
"game_effects",
"COLOR_GREEN",
"COLOR_RED"
],
"diagnostics.ignoredFiles": "Enable",
"format.enable": false,
"runtime.special": {
"include": "require",
"includeCS": "require"
},
"runtime.version": "LuaJIT",
"runtime.nonstandardSymbol": [
"continue"
],
"workspace.checkThirdParty": false
}