chore(vim): move back to eslint
All the issues have not been resolved with linting. Nvim lint is more stable with its async linting.
This commit is contained in:
parent
dab35e8523
commit
8fcf291c56
1 changed files with 5 additions and 5 deletions
|
|
@ -61,11 +61,11 @@ if vim.fn.executable "phpcs" == 1 then
|
|||
lint.linters_by_ft.php = { "phpcs" }
|
||||
end
|
||||
|
||||
if vim.fn.executable "eslint_d" == 1 then
|
||||
lint.linters_by_ft.typescript = { "eslint_d" }
|
||||
lint.linters_by_ft.javascript = { "eslint_d" }
|
||||
lint.linters_by_ft.typescriptreact = { "eslint_d" }
|
||||
lint.linters_by_ft.javascriptreact = { "eslint_d" }
|
||||
if vim.fn.executable "eslint" == 1 then
|
||||
lint.linters_by_ft.typescript = { "eslint" }
|
||||
lint.linters_by_ft.javascript = { "eslint" }
|
||||
lint.linters_by_ft.typescriptreact = { "eslint" }
|
||||
lint.linters_by_ft.javascriptreact = { "eslint" }
|
||||
end
|
||||
|
||||
if vim.fn.executable "luacheck" == 1 then
|
||||
|
|
|
|||
Loading…
Reference in a new issue