summaryrefslogtreecommitdiff
path: root/ale_linters
diff options
context:
space:
mode:
authorRyan Campbell <campbellr@gmail.com>2018-12-20 15:37:31 -0700
committerRyan Campbell <campbellr@gmail.com>2019-03-03 14:43:21 -0700
commit4fc27f099bfe89be284f64838884d0357956420f (patch)
tree6403ec0cc77de0b080a0ecce55c3da3403ed984b /ale_linters
parentfefc093e707716da755ca2c326f852495f1b56fb (diff)
downloadale-4fc27f099bfe89be284f64838884d0357956420f.zip
javac: Don't assume src/main/java always exists
Some projects I have only have src/test/java (no /src/main/java), which seemed to break some incorrect assumptions the linter had.
Diffstat (limited to 'ale_linters')
-rw-r--r--ale_linters/java/javac.vim13
1 files changed, 6 insertions, 7 deletions
diff --git a/ale_linters/java/javac.vim b/ale_linters/java/javac.vim
index 2aa01b4f..18a26b77 100644
--- a/ale_linters/java/javac.vim
+++ b/ale_linters/java/javac.vim
@@ -55,15 +55,14 @@ function! ale_linters#java#javac#GetCommand(buffer, import_paths) abort
if isdirectory(l:jaxb_dir)
call add(l:sp_dirs, l:jaxb_dir)
endif
+ endif
- " Automatically include the test directory, but only for test code.
- if expand('#' . a:buffer . ':p') =~? '\vsrc[/\\]test[/\\]java'
- let l:test_dir = fnamemodify(l:src_dir, ':h:h:h')
- \ . (has('win32') ? '\test\java\' : '/test/java/')
+ " Automatically include the test directory, but only for test code.
+ if expand('#' . a:buffer . ':p') =~? '\vsrc[/\\]test[/\\]java'
+ let l:test_dir = ale#path#FindNearestDirectory(a:buffer, 'src/test/java')
- if isdirectory(l:test_dir)
- call add(l:sp_dirs, l:test_dir)
- endif
+ if isdirectory(l:test_dir)
+ call add(l:sp_dirs, l:test_dir)
endif
endif