credo now recognizes umbrella projects
Use ale#handlers#elixir#FindMixUmbrellaRoot to determine project root instead of ale#handlers#elixir#FindMixProjectRoot
This commit is contained in:
parent
6e18c03d80
commit
e5e39a939a
2 changed files with 13 additions and 1 deletions
|
@ -46,7 +46,7 @@ function! ale_linters#elixir#credo#GetMode() abort
|
||||||
endfunction
|
endfunction
|
||||||
|
|
||||||
function! ale_linters#elixir#credo#GetCommand(buffer) abort
|
function! ale_linters#elixir#credo#GetCommand(buffer) abort
|
||||||
let l:project_root = ale#handlers#elixir#FindMixProjectRoot(a:buffer)
|
let l:project_root = ale#handlers#elixir#FindMixUmbrellaRoot(a:buffer)
|
||||||
let l:mode = ale_linters#elixir#credo#GetMode()
|
let l:mode = ale_linters#elixir#credo#GetMode()
|
||||||
|
|
||||||
return ale#path#CdString(l:project_root)
|
return ale#path#CdString(l:project_root)
|
||||||
|
|
|
@ -8,6 +8,18 @@ After:
|
||||||
|
|
||||||
call ale#assert#TearDownLinterTest()
|
call ale#assert#TearDownLinterTest()
|
||||||
|
|
||||||
|
Execute(Builds credo command with normal project):
|
||||||
|
AssertLinter 'mix',
|
||||||
|
\ ale#path#CdString(ale#path#Simplify(g:dir . '/elixir_paths/mix_project'))
|
||||||
|
\ . 'mix help credo && mix credo suggest --format=flycheck --read-from-stdin %s'
|
||||||
|
|
||||||
|
Execute(Builds credo command with umbrella project):
|
||||||
|
call ale#test#SetFilename('elixir_paths/umbrella_project/apps/mix_project/lib/app.ex')
|
||||||
|
|
||||||
|
AssertLinter 'mix',
|
||||||
|
\ ale#path#CdString(ale#path#Simplify(g:dir . '/elixir_paths/umbrella_project'))
|
||||||
|
\ . 'mix help credo && mix credo suggest --format=flycheck --read-from-stdin %s'
|
||||||
|
|
||||||
Execute(Builds credo command with --strict mode when set to 1):
|
Execute(Builds credo command with --strict mode when set to 1):
|
||||||
let g:ale_elixir_credo_strict = 1
|
let g:ale_elixir_credo_strict = 1
|
||||||
|
|
||||||
|
|
Reference in a new issue