eslint_d has been removed from builtins, install it from extras. #10
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Ref: nvimtools/none-ls.nvim#81
This pull request includes changes to the
lua/plugins/none-ls.lua
file. The main modifications are the addition of a dependency and a change in the wayeslint_d
is required.Key changes:
lua/plugins/none-ls.lua
: Addednvimtools/none-ls-extras.nvim
as a dependency. This change suggests that additional features or functionalities from thenone-ls-extras.nvim
plugin are now required in this project.lua/plugins/none-ls.lua
: Modified the wayeslint_d
diagnostics is required. Instead of directly usingnull_ls.builtins.diagnostics.eslint_d
, it is now being required fromnull_ls.diagnostics.eslint_d
. This change might have been made to accommodate updates in thenull_ls
oreslint_d
packages or to fix issues related to the previous way of requiringeslint_d
.