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 way eslint_d is required.
Key changes:
lua/plugins/none-ls.lua: Added nvimtools/none-ls-extras.nvim as a dependency. This change suggests that additional features or functionalities from the none-ls-extras.nvim plugin are now required in this project.
lua/plugins/none-ls.lua: Modified the way eslint_d diagnostics is required. Instead of directly using null_ls.builtins.diagnostics.eslint_d, it is now being required from null_ls.diagnostics.eslint_d. This change might have been made to accommodate updates in the null_ls or eslint_d packages or to fix issues related to the previous way of requiring eslint_d.
Ref: https://github.com/nvimtools/none-ls.nvim/discussions/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
.