summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--autoload/ale/fixers/eslint.vim8
-rw-r--r--test/fixers/test_eslint_fixer_callback.vader20
2 files changed, 0 insertions, 28 deletions
diff --git a/autoload/ale/fixers/eslint.vim b/autoload/ale/fixers/eslint.vim
index 969ac202..d30f1ba6 100644
--- a/autoload/ale/fixers/eslint.vim
+++ b/autoload/ale/fixers/eslint.vim
@@ -32,14 +32,6 @@ function! ale#fixers#eslint#ApplyFixForVersion(buffer, version_output) abort
\}
endif
- " 4.9.0 is the first version with --fix-dry-run
- if ale#semver#GTE(l:version, [4, 9, 0])
- return {
- \ 'command': ale#node#Executable(a:buffer, l:executable)
- \ . ' --stdin-filename %s --stdin --fix-dry-run',
- \}
- endif
-
return {
\ 'command': ale#node#Executable(a:buffer, l:executable)
\ . ' -c ' . ale#Escape(l:config)
diff --git a/test/fixers/test_eslint_fixer_callback.vader b/test/fixers/test_eslint_fixer_callback.vader
index 60bb859e..4ced3a11 100644
--- a/test/fixers/test_eslint_fixer_callback.vader
+++ b/test/fixers/test_eslint_fixer_callback.vader
@@ -69,17 +69,6 @@ Execute(The version check should be correct):
\ },
\ ale#fixers#eslint#Fix(bufnr(''))
-Execute(--fix-dry-run should be used for 4.9.0 and up):
- call ale#test#SetFilename('../eslint-test-files/react-app/subdir/testfile.js')
-
- AssertEqual
- \ {
- \ 'command': (has('win32') ? 'node.exe ' : '')
- \ . ale#Escape(ale#path#Winify(g:dir . '/../eslint-test-files/react-app/node_modules/eslint/bin/eslint.js'))
- \ . ' --stdin-filename %s --stdin --fix-dry-run',
- \ },
- \ ale#fixers#eslint#ApplyFixForVersion(bufnr(''), ['4.9.0'])
-
Execute(--fix-to-stdout should be used for eslint_d):
call ale#test#SetFilename('../eslint-test-files/app-with-eslint-d/testfile.js')
@@ -125,12 +114,3 @@ Execute(The version number should be cached):
\ 'command': '',
\ },
\ ale#fixers#eslint#Fix(bufnr(''))
-
- " Call it again without the version output. We should use the newer command.
- AssertEqual
- \ {
- \ 'command': (has('win32') ? 'node.exe ' : '')
- \ . ale#Escape(ale#path#Winify(g:dir . '/../eslint-test-files/react-app/node_modules/eslint/bin/eslint.js'))
- \ . ' --stdin-filename %s --stdin --fix-dry-run',
- \ },
- \ ale#fixers#eslint#ApplyFixForVersion(bufnr(''), [])