gitsigns.nvim/.luarc.json

38 lines
849 B
JSON
Raw Permalink Normal View History

2023-07-13 11:08:16 +02:00
{
2023-08-15 10:22:24 +02:00
"$schema": "https://raw.githubusercontent.com/LuaLS/vscode-lua/master/setting/schema.json",
"runtime": {
"version": "LuaJIT"
},
"workspace": {
"library": [
"lua",
"$VIMRUNTIME",
2024-04-03 17:40:25 +02:00
"nvim-test",
2023-08-15 10:22:24 +02:00
"${3rd}/busted/library",
2023-10-01 17:41:58 +02:00
"${3rd}/luassert/library",
2023-08-15 10:22:24 +02:00
"${3rd}/luv/library"
2023-07-13 11:08:16 +02:00
],
2023-08-15 10:22:24 +02:00
"checkThirdParty": false
},
"diagnostics": {
2024-04-17 11:22:45 +02:00
"libraryFiles": "Disable",
2023-08-15 10:22:24 +02:00
"groupFileStatus": {
"strict": "Opened",
2023-08-15 11:58:23 +02:00
"strong": "Opened",
"ambiguity" : "Opened",
"duplicate" : "Opened",
"global" : "Opened",
"luadoc" : "Opened",
"redefined" : "Opened",
"type-check" : "Opened",
"unbalanced" : "Opened",
"unused" : "Opened"
2023-08-15 10:22:24 +02:00
},
"groupSeverity": {
"strong": "Warning",
"strict": "Warning"
},
"unusedLocalExclude": [ "_*" ]
}
2023-07-13 11:08:16 +02:00
}