chore: replace eslintd with quick-lint-js

This commit is contained in:
Mariano Z. 2025-03-24 16:54:13 -03:00
parent 1020911f18
commit 684ee6d508
Signed by: marianozunino
GPG key ID: 4C73BAD25156DACE
3 changed files with 7 additions and 18 deletions

View file

@ -25,8 +25,8 @@ return {
cpp = { "clang-format" },
hcl = { "hcl" },
toml = { "taplo" },
htmlhugo = { "prettier" },
markdown = { "prettier" },
htmlhugo = { "prettierd", "prettier" },
markdown = { "prettierd", "prettier" },
},
formatters = {
csharpier = {

View file

@ -10,21 +10,10 @@ M.config = function()
local lint = require("lint")
lint.linters_by_ft = {
javascript = {
"eslint_d",
},
typescript = {
"eslint_d",
},
javascriptreact = {
"eslint_d",
},
typescriptreact = {
"eslint_d",
},
-- go = {
-- "revive",
-- },
javascript = {},
typescript = {},
javascriptreact = {},
typescriptreact = {},
}
local lint_augroup = vim.api.nvim_create_augroup("lint", { clear = true })

View file

@ -110,9 +110,9 @@ function M.config()
"latexindent",
"clang-format",
"csharpier",
"quick-lint-js",
-- Additional tools
"eslint_d",
"templ",
}