aboutsummaryrefslogtreecommitdiff
path: root/.luarc.json
blob: 5a014a26ea814dfb71d3fb34b4929795c3b0f847 (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
31
{
  "$schema": "https://raw.githubusercontent.com/LuaLS/vscode-lua/master/setting/schema.json",
  "runtime": {
      "version": "LuaJIT"
  },
  "workspace": {
    "library": [
      "runtime/lua",
      "${3rd}/busted/library",
      "${3rd}/luv/library"
    ],
    "ignoreDir": [
      "test"
    ],
    "checkThirdParty": false
  },
  "diagnostics": {
    "groupFileStatus": {
      "strict": "Opened",
      "strong": "Opened"
    },
    "groupSeverity": {
      "strong": "Warning",
      "strict": "Warning"
    },
    "unusedLocalExclude": [ "_*" ],
    "disable": [
      "luadoc-miss-see-name"
    ]
  }
}