diff options
author | Bartek thindil Jasicki <thindil@laeran.pl> | 2021-01-01 09:24:50 +0100 |
---|---|---|
committer | Bartek thindil Jasicki <thindil@laeran.pl> | 2021-01-01 09:24:50 +0100 |
commit | 3fca5e73b605a07d3fdcf46cf24b1675aae5bca6 (patch) | |
tree | 2247cae4375ab75104f7de6983e4243717182195 /ale_linters | |
parent | 8af805cefec9cbf64efd34760a69fc025b37eed8 (diff) | |
parent | 7fca451cf9a3068efe5e93fcc4b5494d939245fb (diff) | |
download | ale-3fca5e73b605a07d3fdcf46cf24b1675aae5bca6.zip |
Merge remote-tracking branch 'upstream/master'
Diffstat (limited to 'ale_linters')
-rw-r--r-- | ale_linters/java/checkstyle.vim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ale_linters/java/checkstyle.vim b/ale_linters/java/checkstyle.vim index ec7339d1..f00734e0 100644 --- a/ale_linters/java/checkstyle.vim +++ b/ale_linters/java/checkstyle.vim @@ -9,7 +9,7 @@ function! ale_linters#java#checkstyle#Handle(buffer, lines) abort let l:output = [] " modern checkstyle versions - let l:pattern = '\v\[(WARN|ERROR)\] [a-zA-Z]?:?[^:]+:(\d+):(\d+)?:? (.*) \[(.+)\]$' + let l:pattern = '\v\[(WARN|ERROR)\] [a-zA-Z]?:?[^:]+:(\d+):(\d+)?:? (.*) \[(.+)\]' for l:match in ale#util#GetMatches(a:lines, l:pattern) call add(l:output, { |