nvim: after/plugin/nvim-lint: Drop languagetool & vale

Both seem to give errors at the moment. While at it, drop the unused
flake8 args setting.
This commit is contained in:
Sanchayan Maity 2022-09-27 10:51:15 +05:30
parent e2880791b3
commit 3ea83c67ba
1 changed files with 0 additions and 4 deletions

View File

@ -8,12 +8,8 @@ nvim_lint.linters_by_ft = {
haskell = { 'hlint' },
javascript = { 'eslint' },
lua = { 'luacheck' },
markdown = { 'vale', 'languagetool' },
python = { 'pylint', 'mypy' },
sh = { 'shellcheck' },
typescript = { 'eslint' },
text = { 'vale', 'languagetool' },
yaml = { 'yamllint' },
}
nvim_lint.linters.flake8.args = { '--ignore', 'E133,E501,W503' }