2011-04-28 02:48:54 -04:00
|
|
|
"============================================================================
|
2013-06-18 07:40:24 -04:00
|
|
|
"File: puppetlint.vim
|
2011-04-28 02:48:54 -04:00
|
|
|
"Description: Syntax checking plugin for syntastic.vim
|
|
|
|
"Maintainer: Eivind Uggedal <eivind at uggedal dot com>
|
|
|
|
"License: This program is free software. It comes without any warranty,
|
|
|
|
" to the extent permitted by applicable law. You can redistribute
|
|
|
|
" it and/or modify it under the terms of the Do What The Fuck You
|
|
|
|
" Want To Public License, Version 2, as published by Sam Hocevar.
|
|
|
|
" See http://sam.zoy.org/wtfpl/COPYING for more details.
|
|
|
|
"
|
|
|
|
"============================================================================
|
|
|
|
|
2013-02-21 10:50:41 -05:00
|
|
|
if exists("g:loaded_syntastic_puppet_puppetlint_checker")
|
|
|
|
finish
|
|
|
|
endif
|
|
|
|
let g:loaded_syntastic_puppet_puppetlint_checker=1
|
|
|
|
|
2013-07-16 15:30:28 -04:00
|
|
|
if exists("g:syntastic_puppet_lint_arguments")
|
|
|
|
let g:syntastic_puppet_puppetlint_args = g:syntastic_puppet_lint_arguments
|
2013-11-14 03:13:05 -05:00
|
|
|
call syntastic#log#deprecationWarn("variable g:syntastic_puppet_lint_arguments is deprecated, please use g:syntastic_puppet_puppetlint_args instead")
|
2013-06-25 14:12:23 -04:00
|
|
|
endif
|
|
|
|
|
2013-10-28 11:30:25 -04:00
|
|
|
function! SyntaxCheckers_puppet_puppetlint_IsAvailable() dict
|
2013-06-19 05:07:20 -04:00
|
|
|
return
|
|
|
|
\ executable("puppet") &&
|
|
|
|
\ executable("puppet-lint") &&
|
2013-09-24 01:39:07 -04:00
|
|
|
\ syntastic#util#versionIsAtLeast(syntastic#util#getVersion('puppet-lint --version 2>' .
|
2013-06-18 07:40:24 -04:00
|
|
|
\ syntastic#util#DevNull()), [0,1,10])
|
2012-10-12 05:54:28 -04:00
|
|
|
endfunction
|
|
|
|
|
2013-10-28 07:53:33 -04:00
|
|
|
function! SyntaxCheckers_puppet_puppetlint_GetLocList() dict
|
2013-11-01 05:51:47 -04:00
|
|
|
let makeprg = self.makeprgBuild({
|
2013-06-18 07:40:24 -04:00
|
|
|
\ 'exe': 'puppet-lint',
|
2013-11-01 05:51:47 -04:00
|
|
|
\ 'post_args': '--log-format "%{KIND} [%{check}] %{message} at %{fullpath}:%{linenumber}"' })
|
2012-03-20 03:53:43 -04:00
|
|
|
|
2013-06-18 07:40:24 -04:00
|
|
|
let errorformat = '%t%*[a-zA-Z] %m at %f:%l'
|
2012-03-20 03:53:43 -04:00
|
|
|
|
2013-06-18 07:40:24 -04:00
|
|
|
return SyntasticMake({
|
|
|
|
\ 'makeprg': makeprg,
|
|
|
|
\ 'errorformat': errorformat })
|
2011-04-28 02:48:54 -04:00
|
|
|
endfunction
|
2012-03-20 00:56:51 -04:00
|
|
|
|
2013-01-27 15:08:30 -05:00
|
|
|
call g:SyntasticRegistry.CreateAndRegisterChecker({
|
|
|
|
\ 'filetype': 'puppet',
|
2013-10-28 11:30:25 -04:00
|
|
|
\ 'name': 'puppetlint',
|
|
|
|
\ 'exec': 'puppet-lint'})
|