-
Notifications
You must be signed in to change notification settings - Fork 2
(v3.4.0) VimL: vimlint
Maintainer: LCD 47 lcd047@gmail.com
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.
[Syntastic Wiki][0] [0]: https://github.com/scrooloose/syntastic/wiki/