nvim-treesitter/.luarc.json

29 lines
556 B
JSON
Raw Permalink 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": [
"$VIMRUNTIME",
"${3rd}/busted/library"
2023-08-08 10:41:37 +01:00
],
"ignoreDir": [
".test-deps",
"tests"
],
"checkThirdParty": "Disable"
2023-08-08 10:41:37 +01:00
},
"diagnostics": {
"groupFileStatus": {
"strict": "Opened",
"strong": "Opened"
},
"groupSeverity": {
"strong": "Warning",
"strict": "Warning"
},
"unusedLocalExclude": [ "_*" ]
}
}