Skip to content
This repository has been archived by the owner on Sep 20, 2023. It is now read-only.

VimL: vimlint

LCD 47 edited this page Sep 22, 2014 · 8 revisions

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.

Options:

The errors reported by the checkercan be enabled or disabled by setting the variable g:syntastic_vimlint_options to a dictionary of error codes and level values, with the same syntax as g:vimlint#config. For example, to disable reports about usused arguments:

let g:syntastic_vimlint_options = { 'EVL103': 1 }

See :help g:vimlint#config and :help vimlint-errorcode for more details.

Note:

This checker doesn't call the makeprgBuild() function, and thus it ignores the usual g:syntastic_vim_vimlint_<option> variables.

Clone this wiki locally