LaTeX Linters (#190)

* Add chktex linter

* Alias plaintex to tex

* Add lacheck linter

Closes #179

* Add the chktex warning code

This very useful to have when you want to suppress lint warnings with LaTeX
comments. chktex tends to be a bit noisy so this often needed.

* lacheck: Make regex less specific

To be more robust future changes in `stdin-wrapper`
This commit is contained in:
Andrew Balmos
2016-12-04 17:19:06 -05:00
committed by w0rp
parent bbdff82aee
commit 35307c0585
5 changed files with 146 additions and 0 deletions

View File

@@ -9,6 +9,7 @@ let s:linters = {}
let s:default_ale_linter_aliases = {
\ 'zsh': 'sh',
\ 'csh': 'sh',
\ 'plaintex': 'tex'
\}
" Default linters to run for particular filetypes.