mirror of
https://github.com/neovim/neovim
synced 2025-07-15 16:51:49 +00:00
Problem: No type information for `vim.uv`. Solution: Vendor https://github.com/LuaCATS/luv (which is what luals bundles). This will allow other tooling to work out-of-the-box and make these files available to users and plugins without the need for `lazydev.nvim` etc.
32 lines
613 B
JSON
32 lines
613 B
JSON
{
|
|
"$schema": "https://raw.githubusercontent.com/LuaLS/vscode-lua/master/setting/schema.json",
|
|
"runtime": {
|
|
"version": "LuaJIT"
|
|
},
|
|
"workspace": {
|
|
"library": [
|
|
"runtime/lua",
|
|
"${3rd}/busted/library"
|
|
],
|
|
"ignoreDir": [
|
|
"test",
|
|
"_vim9script.lua"
|
|
],
|
|
"checkThirdParty": "Disable"
|
|
},
|
|
"diagnostics": {
|
|
"groupFileStatus": {
|
|
"strict": "Opened",
|
|
"strong": "Opened"
|
|
},
|
|
"groupSeverity": {
|
|
"strong": "Warning",
|
|
"strict": "Warning"
|
|
},
|
|
"unusedLocalExclude": [ "_*" ],
|
|
"disable": [
|
|
"luadoc-miss-see-name"
|
|
]
|
|
}
|
|
}
|