From 7def00d5a90059b9776e1bf41ea32bd90deb6007 Mon Sep 17 00:00:00 2001 From: Jonathan Boudreau Date: Sat, 8 Jul 2017 13:37:21 -0400 Subject: Use different reporter to support older versions of jscs (#737) * Use different reporter to support older versions of jscs * Add test and make more consistent with other code * Add documentation for jscs * Add more test coverage --- test/handler/test_jscs_handler.vader | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 test/handler/test_jscs_handler.vader (limited to 'test/handler') diff --git a/test/handler/test_jscs_handler.vader b/test/handler/test_jscs_handler.vader new file mode 100644 index 00000000..81e91d8e --- /dev/null +++ b/test/handler/test_jscs_handler.vader @@ -0,0 +1,25 @@ + +Execute(jscs should parse lines correctly): + AssertEqual + \ [ + \ { + \ 'lnum': 1, + \ 'col': 7, + \ 'text': 'disallowVar: Variable declarations should use `let` or `const` not `var`', + \ }, + \ { + \ 'lnum': 3, + \ 'col': 21, + \ 'text': 'disallowTrailingWhitespace: Illegal trailing whitespace', + \ }, + \ { + \ 'lnum': 5, + \ 'col': 9, + \ 'text': 'disallowUnusedVariables: Variable `hello` is not used', + \ }, + \ ], + \ 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', + \ ]) -- cgit v1.2.3