mirror of
https://github.com/dense-analysis/ale.git
synced 2026-01-10 13:32:34 +08:00
Remove standardts fixer in favor of allowing standard.vim fixer to handle JavaScript or TypeScript options.
This commit is contained in:
@@ -1,31 +0,0 @@
|
||||
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(''))
|
||||
Reference in New Issue
Block a user