mirror of
https://github.com/dense-analysis/ale.git
synced 2025-12-20 11:11:13 +08:00
slimlint: Search for .rubocop.yml and use it
This fixes slim-lint not honoring a `.rubocop.yml` in the file's or parent directory. Due to the way slim-lint calls rubocop, it requires the special `SLIM_LINT_RUBUCOP_CONF` env var to pick up the `.rubocop.yml` if it is not run on the real file (which is the case here). See https://github.com/sds/slim-lint/blob/master/lib/slim_lint/linter/README.md#rubocop
This commit is contained in:
35
test/command_callback/test_slimlint_command_callback.vader
Normal file
35
test/command_callback/test_slimlint_command_callback.vader
Normal file
@@ -0,0 +1,35 @@
|
||||
Before:
|
||||
runtime ale_linters/slim/slimlint.vim
|
||||
|
||||
let g:default_command = 'slim-lint %t'
|
||||
|
||||
call ale#test#SetDirectory('/testplugin/test/command_callback')
|
||||
|
||||
After:
|
||||
Restore
|
||||
|
||||
unlet! g:default_command
|
||||
|
||||
let g:ale_has_override = {}
|
||||
|
||||
call ale#linter#Reset()
|
||||
call ale#test#RestoreDirectory()
|
||||
|
||||
Execute(The default command should be correct):
|
||||
AssertEqual g:default_command, ale_linters#slim#slimlint#GetCommand(bufnr(''))
|
||||
|
||||
Execute(The command should have the .rubocop.yml prepended as an env var if one exists):
|
||||
call ale#test#SetFilename('../slimlint-test-files/subdir/file.slim')
|
||||
|
||||
AssertEqual
|
||||
\ 'SLIM_LINT_RUBUCOP_CONF=''/testplugin/test/slimlint-test-files/.rubocop.yml'' ' . g:default_command,
|
||||
\ ale_linters#slim#slimlint#GetCommand(bufnr(''))
|
||||
|
||||
Execute(The command should have the .rubocop.yml prepended as an env var if one exists on win32):
|
||||
call ale#test#SetFilename('../slimlint-test-files/subdir/file.slim')
|
||||
|
||||
let g:ale_has_override['win32'] = 1
|
||||
|
||||
AssertEqual
|
||||
\ 'set SLIM_LINT_RUBUCOP_CONF=''/testplugin/test/slimlint-test-files/.rubocop.yml'' && ' . g:default_command,
|
||||
\ ale_linters#slim#slimlint#GetCommand(bufnr(''))
|
||||
Reference in New Issue
Block a user