feat: remove none-ls
I figured out how to make Vale work with nvim-lint which was my preference.
This commit is contained in:
parent
bc2b8d99a4
commit
3550e0d209
1 changed files with 1 additions and 13 deletions
|
@ -5,6 +5,7 @@ return {
|
|||
events = { "BufWritePost", "BufReadPost", "InsertLeave" },
|
||||
linters_by_ft = {
|
||||
html = { "djlint" },
|
||||
markdown = { "vale" },
|
||||
javascript = { "eslint" },
|
||||
typescript = { "eslint" },
|
||||
javascriptreact = { "eslint" },
|
||||
|
@ -25,17 +26,4 @@ return {
|
|||
})
|
||||
end,
|
||||
},
|
||||
{
|
||||
"nvimtools/none-ls.nvim",
|
||||
event = { "BufWritePost", "BufReadPost", "InsertLeave" },
|
||||
opts = function()
|
||||
local null_ls = require("null-ls")
|
||||
local diagnostics = null_ls.builtins.diagnostics
|
||||
return {
|
||||
sources = {
|
||||
diagnostics.vale,
|
||||
},
|
||||
}
|
||||
end,
|
||||
},
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue