feat: implement health checks

This commit is contained in:
Stevan Freeborn
2026-07-04 11:05:50 -05:00
parent 56bf4b7d11
commit 65dff6cca7
8 changed files with 197 additions and 14 deletions
+16 -2
View File
@@ -1,13 +1,27 @@
{
"$schema": "https://raw.githubusercontent.com/sumneko/vscode-lua/master/setting/schema.json",
"compiler": {
"verbosity": "Information"
},
"diagnostics": {
"globals": [
"vim",
"describe",
"it",
"before_each",
"after_each",
"assert"
]
},
"workspace": {
"checkThirdParty": false,
"library": [
"$VIMRUNTIME/lua",
"${3rd}/luv/library",
"./.tests/vendor/plenary.nvim"
]
}
},
"diagnostics.disable": [
"undefined-field"
]
}