summaryrefslogtreecommitdiff
path: root/autoload
diff options
context:
space:
mode:
authorw0rp <devw0rp@gmail.com>2017-11-22 17:01:50 +0000
committerw0rp <devw0rp@gmail.com>2017-11-22 17:01:50 +0000
commit6e65998ca7ebd6eace6313be694100922f2229f4 (patch)
tree891c9c471b19936e00dd0f0f5558d843fc6bfaa5 /autoload
parentb5ec1a5fd01a9c3076487741d4279391a236ce57 (diff)
downloadale-6e65998ca7ebd6eace6313be694100922f2229f4.zip
#988 Take --fix-dry-run away again, because it is dumb
Diffstat (limited to 'autoload')
-rw-r--r--autoload/ale/fixers/eslint.vim8
1 files changed, 0 insertions, 8 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)