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
|
2014-01-03 04:29:08 -05:00
|
|
|
let g:loaded_syntastic_puppet_puppetlint_checker = 1
|
|
|
|
|
|
|
|
let s:save_cpo = &cpo
|
|
|
|
set cpo&vim
|
2013-02-21 10:50:41 -05:00
|
|
|
|
2013-10-28 11:30:25 -04:00
|
|
|
function! SyntaxCheckers_puppet_puppetlint_IsAvailable() dict
|
2014-10-06 15:15:44 -04:00
|
|
|
call self.log("executable('puppet') = " . executable('puppet') . ', ' .
|
|
|
|
\ "executable(" . string(self.getExec()) . ") = " . executable(self.getExec()))
|
|
|
|
if !executable('puppet') || !executable(self.getExec())
|
|
|
|
return 0
|
|
|
|
endif
|
2015-01-23 04:39:42 -05:00
|
|
|
let ver = self.getVersion(self.getExecEscaped() . ' --version 2>' . syntastic#util#DevNull())
|
2014-10-06 15:15:44 -04:00
|
|
|
return syntastic#util#versionIsAtLeast(ver, [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
|
2014-06-24 12:02:42 -04:00
|
|
|
call syntastic#log#deprecationWarn('puppet_lint_arguments', 'puppet_puppetlint_args')
|
|
|
|
|
2013-11-01 05:51:47 -04:00
|
|
|
let makeprg = self.makeprgBuild({
|
2014-01-28 14:44:44 -05:00
|
|
|
\ 'args_after': '--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'})
|
2014-01-03 04:29:08 -05:00
|
|
|
|
|
|
|
let &cpo = s:save_cpo
|
|
|
|
unlet s:save_cpo
|
|
|
|
|
2015-01-04 05:46:54 -05:00
|
|
|
" vim: set sw=4 sts=4 et fdm=marker:
|