#852 - Capture error codes for swiftlint

This commit is contained in:
w0rp
2017-11-19 13:33:20 +00:00
parent b16c82f2f1
commit fa7f0e2b85
2 changed files with 54 additions and 4 deletions

View File

@@ -1,21 +1,29 @@
Before:
runtime ale_linters/swift/swiftlint.vim
After:
call ale#linter#Reset()
Execute(The swiftint handler should parse error messages correctly):
AssertEqual
\ [
\ {
\ 'lnum': 1,
\ 'col': 7,
\ 'text': 'Operator Usage Whitespace Violation: Operators should be surrounded by a single whitespace when they are being used. (operator_usage_whitespace)',
\ 'text': 'Operator Usage Whitespace Violation: Operators should be surrounded by a single whitespace when they are being used.',
\ 'code': 'operator_usage_whitespace',
\ 'type': 'W',
\ },
\ {
\ 'lnum': 1,
\ 'col': 11,
\ 'text': 'Operator Usage Whitespace Violation: Operators should be surrounded by a single whitespace when they are being used. (operator_usage_whitespace)',
\ 'text': 'Operator Usage Whitespace Violation: Operators should be surrounded by a single whitespace when they are being used.',
\ 'code': 'operator_usage_whitespace',
\ 'type': 'W',
\ },
\
\ ],
\ ale#handlers#gcc#HandleGCCFormat(347, [
\ ale_linters#swift#swiftlint#Handle(bufnr(''), [
\ 'This line should be ignored',
\ '<nopath>:1:7: warning: Operator Usage Whitespace Violation: Operators should be surrounded by a single whitespace when they are being used. (operator_usage_whitespace)',
\ '<nopath>:1:11: warning: Operator Usage Whitespace Violation: Operators should be surrounded by a single whitespace when they are being used. (operator_usage_whitespace)',