Files
neovim/.luarc.json
T

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

30 lines
572 B
JSON
Raw Normal View History

2023-08-07 16:27:53 +01:00
{
"$schema": "https://raw.githubusercontent.com/LuaLS/vscode-lua/master/setting/schema.json",
"runtime": {
2023-12-13 14:04:24 +01:00
"version": "LuaJIT"
2023-08-07 16:27:53 +01:00
},
"workspace": {
"ignoreDir": [
".deps",
"build",
"test"
],
"preloadFileSize": 1000,
2023-12-13 14:04:24 +01:00
"checkThirdParty": "Disable"
2023-08-07 16:27:53 +01:00
},
"diagnostics": {
"groupFileStatus": {
"strict": "Opened",
"strong": "Opened"
},
"groupSeverity": {
"strong": "Warning",
"strict": "Warning"
},
"unusedLocalExclude": [ "_*" ],
"disable": [
"luadoc-miss-see-name"
]
}
}