diff options
author | w0rp <devw0rp@gmail.com> | 2017-11-22 17:01:50 +0000 |
---|---|---|
committer | w0rp <devw0rp@gmail.com> | 2017-11-22 17:01:50 +0000 |
commit | 6e65998ca7ebd6eace6313be694100922f2229f4 (patch) | |
tree | 891c9c471b19936e00dd0f0f5558d843fc6bfaa5 /autoload | |
parent | b5ec1a5fd01a9c3076487741d4279391a236ce57 (diff) | |
download | ale-6e65998ca7ebd6eace6313be694100922f2229f4.zip |
#988 Take --fix-dry-run away again, because it is dumb
Diffstat (limited to 'autoload')
-rw-r--r-- | autoload/ale/fixers/eslint.vim | 8 |
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) |