-
👋🏼 I'd first like to take my time and thank you for all your hard work improving the neovim eco system. Really appreciate it! My confused on how I can setup It's very clear on how I would setup formatters and linters but I'm very confused on how I would setup the All help greatly appreciated 🙏🏼 |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
I've now setup I'm also running 👇 on the ts_utils.setup({
enable_import_on_completion = true,
eslint_bin = "eslint_d",
filter_out_diagnostics_by_code = {}
})
ts_utils.setup_client(client) It works but I dislike that there's a overlap here. I would prefer it if I would be able to just add |
Beta Was this translation helpful? Give feedback.
I've now setup
null-ls
to handle linting and formatting and it's working great. Great API and much easier to setup and extend compared toefm
.I'm also running 👇 on the
on_attach
fortsserver
which enables theeslint
actions:It works but I dislike that there's a overlap here. I would prefer it if I would be able to just add
eslint
action handling straight tonull-ls
instead.