-
Couldn't load subscription status.
- Fork 1.1k
(v3.6.0) VimL: vimlint
Maintainer: LCD 47 [email protected]
Vimlint is a lint checker for VimL written in pure VimL, based on Yukihiro Nakadaira's vimlparser. See the project's page for details.
To install it you have to install both vimlint and vimlparser.
The errors reported by Vimlint are configurable by setting the variable
g:syntastic_vimlint_options to a dictionary of error codes and level
values, with the same syntax as Vimlint's g:vimlint#config. See
:help g:vimlint#config and :help vimlint-errorcode for more details.
For example, to ignore unused argument warnings:
let g:syntastic_vimlint_options = { 'EVL103': 1 }Vimlint does not call the makeprgBuild() function, and thus ignores
the usual g:syntastic_vim_vimlint_<option> variables.