-
-
Notifications
You must be signed in to change notification settings - Fork 270
Expand file tree
/
Copy path.emmyrc.json
More file actions
35 lines (35 loc) · 725 Bytes
/
.emmyrc.json
File metadata and controls
35 lines (35 loc) · 725 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
34
35
{
"$schema": "https://raw.githubusercontent.com/EmmyLuaLs/emmylua-analyzer-rust/refs/heads/main/crates/emmylua_code_analysis/resources/schema.json",
"runtime": {
"version": "LuaJIT"
},
"diagnostics" : {
"disable" : [
"unnecessary-if",
"invert-if",
"incomplete-signature-doc"
],
"enables": [
"iter-variable-reassign",
"non-literal-expressions-in-assert",
"incomplete-signature-doc",
"missing-global-doc"
]
},
"strict": {
"typeCall": true,
"arrayIndex": true
},
"codeAction": {
"insertSpace": true
},
"workspace": {
"library": [
"$VIMRUNTIME",
"deps/nvim-test"
],
"ignoreDir": [
".luarocks"
]
}
}