-
-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy path.luarc.json
More file actions
83 lines (83 loc) · 1.85 KB
/
Copy path.luarc.json
File metadata and controls
83 lines (83 loc) · 1.85 KB
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
79
80
81
82
83
{
"$schema": "https://raw.githubusercontent.com/LuaLS/vscode-lua/master/setting/schema.json",
"addonManager": {
"enable": true
},
"codeLens": {
"enable": true
},
"completion": {
"enable": true,
"autoRequire": false,
"callSnippet": "Replace",
"displayContext": 16,
"keywordSnippet": "Replace",
"postfix": "@",
"requireSeparator": ".",
"showParams": true,
"showWord": "Enable",
"workspaceWord": true
},
"diagnostics": {
"enable": true,
"libraryFiles": "Opened"
},
"format": {
"enable": false
},
"hint": {
"arrayIndex": "Auto",
"await": true,
"enable": true,
"paramName": "Literal",
"paramType": true,
"semicolon": "Disable",
"setType": true
},
"hover": {
"enable": true,
"expandAlias": true,
"enumsLimit": 80,
"previewFields": 75,
"viewNumber": true,
"viewString": true,
"viewStringMax": 1000
},
"runtime": {
"version": "Lua 5.4",
"fileEncoding": "utf8",
"pathStrict": false,
"unicodeName": false,
"path": [
"?.lua",
"?/init.lua"
]
},
"semantic": {
"annotation": true,
"enable": true,
"keyword": true,
"variable": true
},
"signatureHelp": {
"enable": true
},
"type": {
"castNumberToInteger": false,
"inferParamType": true,
"weakNilCheck": true,
"weakUnionCheck": true
},
"window": {
"progressBar": false,
"statusBar": false
},
"workspace": {
"checkThirdParty": false,
"useGitIgnore": true,
"preloadFileSize": 2000,
"library": [
"./lua"
]
}
}