forked from codetypess/cocos-lua
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcocos-lua.code-workspace
More file actions
33 lines (33 loc) · 852 Bytes
/
cocos-lua.code-workspace
File metadata and controls
33 lines (33 loc) · 852 Bytes
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
{
"folders": [
{
"path": "."
},
{
"path": "/Users/O/Library/Containers/com.codetypes.hellolua"
}
],
"settings": {
"cmake.configureOnOpen": false,
"luacheck.globals": ["main", "xGame", "__TRACEBACK__", "DEBUG"],
"luacheck.ignore": [
"212", // Unused argument
"211", // Unused local variable.
"212", // Unused argument.
"213", // Unused loop variable.
"231", // Local variable is set but never accessed.
"311", // Value assigned to a local variable is unused
"43.", // Redefining or Shadowing (local|argument|upvalue) variable
"611", // A line consists of nothing but whitespace
"631", // Line is too long
],
"editor.snippetSuggestions": "bottom",
"files.associations": {
"*.manifest": "json",
"*.jsfl": "javascript",
"filesystem": "cpp",
"stdexcept": "cpp",
"string": "cpp"
}
}
}