forked from cataclysmbn/Cataclysm-BN
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.emmyrc.json
More file actions
27 lines (27 loc) · 967 Bytes
/
Copy path.emmyrc.json
File metadata and controls
27 lines (27 loc) · 967 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
{
"$schema": "https://raw.githubusercontent.com/EmmyLuaLs/emmylua-analyzer-rust/9e681265e467fd434a0e19653d0823e1116a5240/crates/emmylua_code_analysis/resources/schema.json",
"completion": {
"autoRequire": false,
"callSnippet": false,
"enable": true,
"postfix": "@"
},
"runtime": {
"requirePattern": [ "?.lua", "?/init.lua", "./?.lua", "./?/init.lua", "../?.lua", "../?/init.lua" ]
},
"workspace": {
"ignoreDir": [ "src", "build", "out", "android/app/build" ],
"ignoreGlobs": [ "tests/lua/**" ],
"library": [ "./lua_annotations.lua" ],
"workspaceRoots": [ "data/json", "data/mods/test_lua_require" ],
"moduleMap": [ { "pattern": "^\\./(.*)$", "replace": "$1" }, { "pattern": "^\\.\\./(.*)$", "replace": "$1" } ]
},
"diagnostics": {
"enable": true,
"globals": [ "test_data", "catadoc", "doc_gen_func" ],
"severity": {
"param-type-mismatch": "error",
"undefined-field": "error"
}
}
}