From 35307c058535c7d6c365965c90710c39f1c2e3d8 Mon Sep 17 00:00:00 2001 From: Andrew Balmos Date: Sun, 4 Dec 2016 17:19:06 -0500 Subject: 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` --- autoload/ale/linter.vim | 1 + 1 file changed, 1 insertion(+) (limited to 'autoload') diff --git a/autoload/ale/linter.vim b/autoload/ale/linter.vim index 9f4eb798..56cb7650 100644 --- a/autoload/ale/linter.vim +++ b/autoload/ale/linter.vim @@ -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. -- cgit v1.2.3