diff options
author | w0rp <devw0rp@gmail.com> | 2017-11-18 23:55:47 +0000 |
---|---|---|
committer | w0rp <devw0rp@gmail.com> | 2017-11-18 23:55:47 +0000 |
commit | 41cb174f3aeaa38e3d558a197a194c0161fa5b66 (patch) | |
tree | b9a37ef1c08d4444924b4534dd9eea0c4b1f7afa /test | |
parent | cefc5dc5b8fc7cec75222f3cd4d090c1bd48f796 (diff) | |
download | ale-41cb174f3aeaa38e3d558a197a194c0161fa5b66.zip |
#852 - Capture error codes for jscs
Diffstat (limited to 'test')
-rw-r--r-- | test/handler/test_jscs_handler.vader | 15 |
1 files changed, 12 insertions, 3 deletions
diff --git a/test/handler/test_jscs_handler.vader b/test/handler/test_jscs_handler.vader index 6247307e..5566116f 100644 --- a/test/handler/test_jscs_handler.vader +++ b/test/handler/test_jscs_handler.vader @@ -10,21 +10,30 @@ Execute(jscs should parse lines correctly): \ { \ 'lnum': 1, \ 'col': 7, - \ 'text': 'disallowVar: Variable declarations should use `let` or `const` not `var`', + \ 'text': 'Variable declarations should use `let` or `const` not `var`', + \ 'code': 'disallowVar', \ }, \ { \ 'lnum': 3, \ 'col': 21, - \ 'text': 'disallowTrailingWhitespace: Illegal trailing whitespace', + \ 'text': 'Illegal trailing whitespace', + \ 'code': 'disallowTrailingWhitespace', \ }, \ { \ 'lnum': 5, \ 'col': 9, - \ 'text': 'disallowUnusedVariables: Variable `hello` is not used', + \ 'text': 'Variable `hello` is not used', + \ 'code': 'disallowUnusedVariables', + \ }, + \ { + \ 'lnum': 2, + \ 'col': 1, + \ 'text': 'Expected indentation of 1 characters', \ }, \ ], \ 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', + \ 'foobar.js: line 2, col 1, Expected indentation of 1 characters', \ ]) |