nvim-treesitter/.luarc.json

27 lines
533 B
JSON
Raw Normal View History

2023-08-08 10:41:37 +01:00
{
"$schema": "https://raw.githubusercontent.com/LuaLS/vscode-lua/master/setting/schema.json",
"runtime": {
"version": "LuaJIT"
2023-08-08 10:41:37 +01:00
},
"workspace": {
"library": [
"lua",
"$VIMRUNTIME",
"${3rd}/luv/library",
"${3rd}/busted/library"
2023-08-08 10:41:37 +01:00
],
"checkThirdParty": false
},
"diagnostics": {
"groupFileStatus": {
"strict": "Opened",
"strong": "Opened"
},
"groupSeverity": {
"strong": "Warning",
"strict": "Warning"
},
"unusedLocalExclude": [ "_*" ]
}
}