Merge pull request #1047 from thenoseman/linter-hamllint_autodetect_config
[PR: hamllint] auto-detect .rubocop.yml and .haml-lint.yml when using haml-lint
This commit is contained in:
commit
f38ced1e4c
@ -1,6 +1,31 @@
|
|||||||
" Author: Patrick Lewis - https://github.com/patricklewis
|
" Author: Patrick Lewis - https://github.com/patricklewis, thenoseman - https://github.com/thenoseman
|
||||||
" Description: haml-lint for Haml files
|
" Description: haml-lint for Haml files
|
||||||
|
|
||||||
|
function! ale_linters#haml#hamllint#GetCommand(buffer) abort
|
||||||
|
let l:prefix = ''
|
||||||
|
|
||||||
|
let l:rubocop_config_file_path = ale#path#FindNearestFile(a:buffer, '.rubocop.yml')
|
||||||
|
let l:hamllint_config_file_path = ale#path#FindNearestFile(a:buffer, '.haml-lint.yml')
|
||||||
|
|
||||||
|
" Set HAML_LINT_RUBOCOP_CONF variable as it is needed for haml-lint to
|
||||||
|
" pick up the rubocop config.
|
||||||
|
"
|
||||||
|
" See https://github.com/brigade/haml-lint/blob/master/lib/haml_lint/linter/rubocop.rb#L89
|
||||||
|
" HamlLint::Linter::RuboCop#rubocop_flags
|
||||||
|
if !empty(l:rubocop_config_file_path)
|
||||||
|
if ale#Has('win32')
|
||||||
|
let l:prefix = 'set HAML_LINT_RUBOCOP_CONF=' . ale#Escape(l:rubocop_config_file_path) . ' &&'
|
||||||
|
else
|
||||||
|
let l:prefix = 'HAML_LINT_RUBOCOP_CONF=' . ale#Escape(l:rubocop_config_file_path)
|
||||||
|
endif
|
||||||
|
endif
|
||||||
|
|
||||||
|
return (!empty(l:prefix) ? l:prefix . ' ' : '')
|
||||||
|
\ . 'haml-lint'
|
||||||
|
\ . (!empty(l:hamllint_config_file_path) ? ' --config ' . ale#Escape(l:hamllint_config_file_path) : '')
|
||||||
|
\ . ' %t'
|
||||||
|
endfunction
|
||||||
|
|
||||||
function! ale_linters#haml#hamllint#Handle(buffer, lines) abort
|
function! ale_linters#haml#hamllint#Handle(buffer, lines) abort
|
||||||
" Matches patterns like the following:
|
" Matches patterns like the following:
|
||||||
" <path>:51 [W] RuboCop: Use the new Ruby 1.9 hash syntax.
|
" <path>:51 [W] RuboCop: Use the new Ruby 1.9 hash syntax.
|
||||||
@ -21,6 +46,6 @@ endfunction
|
|||||||
call ale#linter#Define('haml', {
|
call ale#linter#Define('haml', {
|
||||||
\ 'name': 'hamllint',
|
\ 'name': 'hamllint',
|
||||||
\ 'executable': 'haml-lint',
|
\ 'executable': 'haml-lint',
|
||||||
\ 'command': 'haml-lint %t',
|
\ 'command_callback': 'ale_linters#haml#hamllint#GetCommand',
|
||||||
\ 'callback': 'ale_linters#haml#hamllint#Handle'
|
\ 'callback': 'ale_linters#haml#hamllint#Handle'
|
||||||
\})
|
\})
|
||||||
|
@ -0,0 +1,72 @@
|
|||||||
|
Before:
|
||||||
|
runtime ale_linters/haml/hamllint.vim
|
||||||
|
|
||||||
|
let g:default_command = 'haml-lint %t'
|
||||||
|
call ale#test#SetDirectory('/testplugin/test/command_callback')
|
||||||
|
|
||||||
|
After:
|
||||||
|
Restore
|
||||||
|
|
||||||
|
unlet! g:default_command
|
||||||
|
unlet! b:conf
|
||||||
|
|
||||||
|
call ale#linter#Reset()
|
||||||
|
call ale#test#RestoreDirectory()
|
||||||
|
|
||||||
|
Execute(The default command should be correct):
|
||||||
|
AssertEqual g:default_command, ale_linters#haml#hamllint#GetCommand(bufnr(''))
|
||||||
|
|
||||||
|
Execute(The command should have the .rubocop.yml prepended as an env var if one exists):
|
||||||
|
call ale#test#SetFilename('../hamllint-test-files/rubocop-yml/subdir/file.haml')
|
||||||
|
let b:conf = ale#path#Winify(g:dir . '/../hamllint-test-files/rubocop-yml/.rubocop.yml')
|
||||||
|
|
||||||
|
if has('win32')
|
||||||
|
" Windows uses 'set var=... && command'
|
||||||
|
AssertEqual
|
||||||
|
\ 'set HAML_LINT_RUBOCOP_CONF='
|
||||||
|
\ . ale#Escape(b:conf)
|
||||||
|
\ . ' && ' . g:default_command,
|
||||||
|
\ ale_linters#haml#hamllint#GetCommand(bufnr(''))
|
||||||
|
else
|
||||||
|
" Unix uses 'var=... command'
|
||||||
|
AssertEqual
|
||||||
|
\ 'HAML_LINT_RUBOCOP_CONF='
|
||||||
|
\ . ale#Escape(b:conf)
|
||||||
|
\ . ' ' . g:default_command,
|
||||||
|
\ ale_linters#haml#hamllint#GetCommand(bufnr(''))
|
||||||
|
endif
|
||||||
|
|
||||||
|
Execute(The command should have the nearest .haml-lint.yml set as --config if it exists):
|
||||||
|
call ale#test#SetFilename('../hamllint-test-files/haml-lint-yml/subdir/file.haml')
|
||||||
|
let b:conf = ale#path#Winify(g:dir . '/../hamllint-test-files/haml-lint-yml/.haml-lint.yml')
|
||||||
|
|
||||||
|
AssertEqual
|
||||||
|
\ 'haml-lint --config '
|
||||||
|
\ . ale#Escape(b:conf)
|
||||||
|
\ . ' %t',
|
||||||
|
\ ale_linters#haml#hamllint#GetCommand(bufnr(''))
|
||||||
|
|
||||||
|
Execute(The command should include a .rubocop.yml and a .haml-lint if both are found):
|
||||||
|
call ale#test#SetFilename('../hamllint-test-files/haml-lint-and-rubocop/subdir/file.haml')
|
||||||
|
let b:conf_hamllint = ale#path#Winify(g:dir . '/../hamllint-test-files/haml-lint-and-rubocop/.haml-lint.yml')
|
||||||
|
let b:conf_rubocop = ale#path#Winify(g:dir . '/../hamllint-test-files/haml-lint-and-rubocop/.rubocop.yml')
|
||||||
|
|
||||||
|
if has('win32')
|
||||||
|
" Windows uses 'set var=... && command'
|
||||||
|
AssertEqual
|
||||||
|
\ 'set HAML_LINT_RUBOCOP_CONF='
|
||||||
|
\ . ale#Escape(b:conf_rubocop)
|
||||||
|
\ . ' && haml-lint --config '
|
||||||
|
\ . ale#Escape(b:conf_hamllint)
|
||||||
|
\ . ' %t',
|
||||||
|
\ ale_linters#haml#hamllint#GetCommand(bufnr(''))
|
||||||
|
else
|
||||||
|
" Unix uses 'var=... command'
|
||||||
|
AssertEqual
|
||||||
|
\ 'HAML_LINT_RUBOCOP_CONF='
|
||||||
|
\ . ale#Escape(b:conf_rubocop)
|
||||||
|
\ . ' haml-lint --config '
|
||||||
|
\ . ale#Escape(b:conf_hamllint)
|
||||||
|
\ . ' %t',
|
||||||
|
\ ale_linters#haml#hamllint#GetCommand(bufnr(''))
|
||||||
|
endif
|
0
test/hamllint-test-files/rubocop-yml/.rubocop.yml
Normal file
0
test/hamllint-test-files/rubocop-yml/.rubocop.yml
Normal file
Loading…
Reference in New Issue
Block a user