From e0181f88320e7cf47aa117c843523a4d6c22c2de Mon Sep 17 00:00:00 2001 From: Jeffrey Lau Date: Sat, 18 Apr 2020 17:25:15 +0800 Subject: linter/scala/metals: Fix return value of GetProjectRoot() It was returning 0 when it should be returning an empty string. The 'AssertEqual' in the ale image is from an old version so it does not check the types of the arguments. This is already fixed in https://github.com/junegunn/vader.vim/commit/427fe19104c15066e4c1d5d385076e8e07a0dee8 Closes #3120 --- ale_linters/scala/metals.vim | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ale_linters/scala/metals.vim b/ale_linters/scala/metals.vim index f78c7119..da9e855d 100644 --- a/ale_linters/scala/metals.vim +++ b/ale_linters/scala/metals.vim @@ -32,6 +32,8 @@ function! ale_linters#scala#metals#GetProjectRoot(buffer) abort \) endif endfor + + return '' endfunction function! ale_linters#scala#metals#GetCommand(buffer) abort -- cgit v1.2.3