aboutsummaryrefslogtreecommitdiffstats
path: root/.emmyrc.json
blob: d5678fdb736e9df63a704d4d933dd1bff8e93781 (plain) (blame)
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
{
  "$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"
    ],
    "enables": [
      "iter-variable-reassign",
      "non-literal-expressions-in-assert",
      "incomplete-signature-doc",
      "missing-global-doc"
    ]
  },
  "strict": {
    "typeCall": true,
    "arrayIndex": true
  },
  "codeAction": {
    "insertSpace": true
  },
  "workspace": {
    "ignoreDir": [
      "lspconfig/lua/",
      "deps"
    ]
  }
}