diff --git a/lua/plugins/linting.lua b/lua/plugins/linting.lua index f90d332..a8dcdff 100644 --- a/lua/plugins/linting.lua +++ b/lua/plugins/linting.lua @@ -27,20 +27,6 @@ return { python = { "pylint" }, markdown = { "proselint" }, } - --###### ESLINT HACK ###### - local eslint = lint.linters.eslint_d - - eslint.args = { - "--no-warn-ignored", -- <-- this is the key argument - "--format", - "json", - "--stdin", - "--stdin-filename", - function() - return vim.api.nvim_buf_get_name(0) - end, - } - --##### END ESLINT HACK ###### local lint_augroup = vim.api.nvim_create_augroup("lint", { clear = true })