nvim: after/plugin/nvim-lint: Enable languagetool for markdown & text

This commit is contained in:
Sanchayan Maity 2021-12-25 17:50:49 +05:30
parent 6b9f354f78
commit cba7712eb2
1 changed files with 2 additions and 2 deletions

View File

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