2017-07-09 13:58:17 +00:00
|
|
|
Before:
|
|
|
|
runtime ale_linters/javascript/jscs.vim
|
|
|
|
|
|
|
|
After:
|
|
|
|
call ale#linter#Reset()
|
2017-07-08 17:37:21 +00:00
|
|
|
|
|
|
|
Execute(jscs should parse lines correctly):
|
|
|
|
AssertEqual
|
|
|
|
\ [
|
|
|
|
\ {
|
|
|
|
\ 'lnum': 1,
|
|
|
|
\ 'col': 7,
|
2017-11-18 23:55:47 +00:00
|
|
|
\ 'text': 'Variable declarations should use `let` or `const` not `var`',
|
|
|
|
\ 'code': 'disallowVar',
|
2017-07-08 17:37:21 +00:00
|
|
|
\ },
|
|
|
|
\ {
|
|
|
|
\ 'lnum': 3,
|
|
|
|
\ 'col': 21,
|
2017-11-18 23:55:47 +00:00
|
|
|
\ 'text': 'Illegal trailing whitespace',
|
|
|
|
\ 'code': 'disallowTrailingWhitespace',
|
2017-07-08 17:37:21 +00:00
|
|
|
\ },
|
|
|
|
\ {
|
|
|
|
\ 'lnum': 5,
|
|
|
|
\ 'col': 9,
|
2017-11-18 23:55:47 +00:00
|
|
|
\ 'text': 'Variable `hello` is not used',
|
|
|
|
\ 'code': 'disallowUnusedVariables',
|
|
|
|
\ },
|
|
|
|
\ {
|
|
|
|
\ 'lnum': 2,
|
|
|
|
\ 'col': 1,
|
|
|
|
\ 'text': 'Expected indentation of 1 characters',
|
2017-07-08 17:37:21 +00:00
|
|
|
\ },
|
|
|
|
\ ],
|
|
|
|
\ ale_linters#javascript#jscs#Handle(347, [
|
|
|
|
\ 'foobar.js: line 1, col 7, disallowVar: Variable declarations should use `let` or `const` not `var`',
|
|
|
|
\ 'foobar.js: line 3, col 21, disallowTrailingWhitespace: Illegal trailing whitespace',
|
|
|
|
\ 'foobar.js: line 5, col 9, disallowUnusedVariables: Variable `hello` is not used',
|
2017-11-18 23:55:47 +00:00
|
|
|
\ 'foobar.js: line 2, col 1, Expected indentation of 1 characters',
|
2017-07-08 17:37:21 +00:00
|
|
|
\ ])
|