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

(v3.5.0) VimL: vimlint

LCD 47 edited this page Jan 6, 2015 · 2 revisions

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.

Options

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 }

Note

Vimlint does not call the makeprgBuild() function, and thus ignores the usual g:syntastic_vim_vimlint_<option> variables.

Clone this wiki locally