summaryrefslogtreecommitdiff
path: root/ale_linters/handlebars/embertemplatelint.vim
diff options
context:
space:
mode:
Diffstat (limited to 'ale_linters/handlebars/embertemplatelint.vim')
-rw-r--r--ale_linters/handlebars/embertemplatelint.vim7
1 files changed, 1 insertions, 6 deletions
diff --git a/ale_linters/handlebars/embertemplatelint.vim b/ale_linters/handlebars/embertemplatelint.vim
index 17c4d08e..14fa3b2e 100644
--- a/ale_linters/handlebars/embertemplatelint.vim
+++ b/ale_linters/handlebars/embertemplatelint.vim
@@ -16,12 +16,7 @@ function! ale_linters#handlebars#embertemplatelint#GetCommand(buffer, version) a
return '%e --format=json --filename %s'
endif
- if ale#semver#GTE(a:version, [1, 6, 0])
- " Reading from stdin was introduced in ember-template-lint@1.6.0
- return '%e --json --filename %s'
- endif
-
- return '%e --json %t'
+ return '%e --json --filename %s'
endfunction
function! ale_linters#handlebars#embertemplatelint#GetCommandWithVersionCheck(buffer) abort