diff options
author | Andrew Balmos <andrew@balmos.org> | 2016-12-04 17:19:06 -0500 |
---|---|---|
committer | w0rp <w0rp@users.noreply.github.com> | 2016-12-04 22:19:06 +0000 |
commit | 35307c058535c7d6c365965c90710c39f1c2e3d8 (patch) | |
tree | f1f63ac26096fc7c4eac6cf22188b7227432755e /autoload | |
parent | bbdff82aee3e50fff1021ede7e57ff8448083e2c (diff) | |
download | ale-35307c058535c7d6c365965c90710c39f1c2e3d8.zip |
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`
Diffstat (limited to 'autoload')
-rw-r--r-- | autoload/ale/linter.vim | 1 |
1 files changed, 1 insertions, 0 deletions
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. |