mirror of
https://github.com/folke/lazy.nvim.git
synced 2025-04-03 06:36:34 +00:00
fix(types): ensure all fields for LazyPluginSpec
are optional (#1843)
> After updating lua_ls to
[v3.13.3](https://github.com/LuaLS/lua-language-server/releases/tag/3.13.3)
noticed my plugin scripts using `@type LazyPluginSpec` now have
`missing-fields` warnings.
It seems they have changed how `missing-fields` diagnostics work with
inherited types:
7b2d58537f
.
Duplicate offending fields as optional in type `LazyPluginSpec`
Closes: #1842
This commit is contained in:
parent
014d1d6d78
commit
703be1dda3
1 changed files with 2 additions and 0 deletions
|
@ -75,6 +75,8 @@
|
|||
---@field module? false
|
||||
|
||||
---@class LazyPluginSpec: LazyPluginBase,LazyPluginSpecHandlers,LazyPluginHooks,LazyPluginRef
|
||||
---@field name? string display name and name used for plugin config files
|
||||
---@field dir? string
|
||||
---@field dependencies? string|string[]|LazyPluginSpec[]
|
||||
---@field specs? string|string[]|LazyPluginSpec[]
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue