ci: add ${3rd}/luv/library
This commit is contained in:
parent
4bd4717b39
commit
824d7e7260
@ -3,7 +3,8 @@
|
||||
"runtime.version" : "Lua 5.1",
|
||||
"workspace": {
|
||||
"library": [
|
||||
"$VIMRUNTIME/lua/vim/lsp"
|
||||
"$VIMRUNTIME/lua/vim/lsp",
|
||||
"${3rd}/luv/library"
|
||||
]
|
||||
},
|
||||
"diagnostics": {
|
||||
|
||||
@ -2,11 +2,6 @@ local log = require "nvim-tree.log"
|
||||
local utils = require "nvim-tree.utils"
|
||||
local notify = require "nvim-tree.notify"
|
||||
|
||||
-- TODO add "${3rd}/luv/library" to "workspace.library"
|
||||
---@class uv.uv_handle_t: table
|
||||
---@class uv.uv_stream_t: uv.uv_handle_t
|
||||
---@class uv.uv_pipe_t: uv.uv_stream_t
|
||||
|
||||
---@class Runner
|
||||
local Runner = {}
|
||||
Runner.__index = Runner
|
||||
|
||||
@ -1,9 +1,5 @@
|
||||
---@meta
|
||||
|
||||
-- TODO add "${3rd}/luv/library" to "workspace.library"
|
||||
---@class uv.uv_req_t: table
|
||||
---@class uv.uv_fs_t: uv.uv_req_t
|
||||
|
||||
---@class ParentNode
|
||||
---@field name string
|
||||
|
||||
|
||||
@ -3,6 +3,11 @@
|
||||
# Performs a lua-language-server check on all files.
|
||||
# luals-out/check.json will be produced on any issues, returning 1.
|
||||
# Outputs only check.json to stdout, all other messages to stderr, to allow jq etc.
|
||||
# $VIMRUNTIME specifies neovim runtime path, defaults to "/usr/share/nvim/runtime" if unset.
|
||||
|
||||
if [ -z "${VIMRUNTIME}" ]; then
|
||||
export VIMRUNTIME="/usr/share/nvim/runtime"
|
||||
fi
|
||||
|
||||
DIR_SRC="lua"
|
||||
DIR_OUT="luals-out"
|
||||
|
||||
Loading…
Reference in New Issue
Block a user