Merge pull request #628 from mziab/fix-stylelint-handler

Fixed stylelint not catching all errors.
This commit is contained in:
w0rp 2017-06-07 09:28:00 +01:00 committed by GitHub
commit 8f9828e5bf
1 changed files with 1 additions and 1 deletions

View File

@ -42,7 +42,7 @@ function! ale#handlers#css#HandleStyleLintFormat(buffer, lines) abort
" src/main.css
" 108:10 ✖ Unexpected leading zero number-leading-zero
" 116:20 ✖ Expected a trailing semicolon declaration-block-trailing-semicolon
let l:pattern = '\v^.* (\d+):(\d+) \s+(\S+)\s+ (.*[^ ])\s+([^ ]+)$'
let l:pattern = '\v^.* (\d+):(\d+) \s+(\S+)\s+ (.*[^ ])\s+([^ ]+)\s*$'
let l:output = []
for l:match in ale#util#GetMatches(a:lines, l:pattern)