File: test_jscs_handler.vader

package info (click to toggle)
vim-ale 4.0.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 8,764 kB
  • sloc: sh: 499; python: 311; perl: 31; makefile: 4; xml: 4; javascript: 1
file content (39 lines) | stat: -rw-r--r-- 1,137 bytes parent folder | download | duplicates (3)
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
Before:
  runtime ale_linters/javascript/jscs.vim

After:
  call ale#linter#Reset()

Execute(jscs should parse lines correctly):
  AssertEqual
  \ [
  \   {
  \     'lnum': 1,
  \     'col': 7,
  \     'text': 'Variable declarations should use `let` or `const` not `var`',
  \     'code': 'disallowVar',
  \   },
  \   {
  \     'lnum': 3,
  \     'col': 21,
  \     'text': 'Illegal trailing whitespace',
  \     'code': 'disallowTrailingWhitespace',
  \   },
  \   {
  \     'lnum': 5,
  \     'col': 9,
  \     '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',
  \ ])