Add StandardJS for TypeScript linting and fixing.

This commit is contained in:
Ian Campbell
2019-07-26 11:52:34 -04:00
parent 67d0ccc398
commit 9017d3ef9c
8 changed files with 162 additions and 0 deletions

View File

@@ -0,0 +1,31 @@
Before:
call ale#test#SetDirectory('/testplugin/test/fixers')
unlet! b:ale_typescript_standard_executable
unlet! b:ale_typescript_standard_options
After:
call ale#test#RestoreDirectory()
Execute(The executable path should be correct):
call ale#test#SetFilename('../eslint-test-files/react-app/subdir/testfile.js')
AssertEqual
\ {
\ 'read_temporary_file': 1,
\ 'command': (has('win32') ? 'node.exe ' : '')
\ . ale#Escape(ale#path#Simplify(g:dir . '/../eslint-test-files/react-app/node_modules/standard/bin/cmd.js'))
\ . ' --fix %t',
\ },
\ ale#fixers#standardts#Fix(bufnr(''))
Execute(Custom options should be supported):
let b:ale_typescript_standard_use_global = 1
let b:ale_typescript_standard_options = '--foo-bar'
AssertEqual
\ {
\ 'read_temporary_file': 1,
\ 'command': ale#Escape('standard') . ' --foo-bar --fix %t',
\ },
\ ale#fixers#standardts#Fix(bufnr(''))