neovim/.luarc.json

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

32 lines
616 B
JSON
Raw Permalink Normal View History

2023-08-07 11:27:53 -04:00
{
"$schema": "https://raw.githubusercontent.com/LuaLS/vscode-lua/master/setting/schema.json",
"runtime": {
2023-12-13 08:04:24 -05:00
"version": "LuaJIT"
2023-08-07 11:27:53 -04:00
},
"workspace": {
"library": [
"runtime/lua",
"${3rd}/busted/library",
"${3rd}/luv/library"
],
"ignoreDir": [
"test"
],
2023-12-13 08:04:24 -05:00
"checkThirdParty": "Disable"
2023-08-07 11:27:53 -04:00
},
"diagnostics": {
"groupFileStatus": {
"strict": "Opened",
"strong": "Opened"
},
"groupSeverity": {
"strong": "Warning",
"strict": "Warning"
},
"unusedLocalExclude": [ "_*" ],
"disable": [
"luadoc-miss-see-name"
]
}
}