feat: move linting to nvim-lint

This also removes linting from conform.nvim, as it should be focused
only on formatting
This commit is contained in:
Devin Haska 2024-06-04 17:05:47 -07:00
parent e17e214958
commit 41367e3235
No known key found for this signature in database
2 changed files with 8 additions and 8 deletions

View file

@ -4,10 +4,10 @@ return {
events = { "BufWritePost", "BufReadPost", "InsertLeave" },
linters_by_ft = {
html = { "djlint" },
javascript = { "eslint_d" },
typescript = { "eslint_d" },
javascriptreact = { "eslint_d" },
typescriptreact = { "eslint_d" },
javascript = { "eslint" },
typescript = { "eslint" },
javascriptreact = { "eslint" },
typescriptreact = { "eslint" },
},
},
config = function(_, opts)