summaryrefslogtreecommitdiff
path: root/test/handler/test_jscs_handler.vader
blob: 81e91d8edc62d998fc07cb74117a871f7c7ada79 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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',
  \ ])