summaryrefslogtreecommitdiff
path: root/ale_linters/handlebars
diff options
context:
space:
mode:
Diffstat (limited to 'ale_linters/handlebars')
-rw-r--r--ale_linters/handlebars/embertemplatelint.vim15
1 files changed, 11 insertions, 4 deletions
diff --git a/ale_linters/handlebars/embertemplatelint.vim b/ale_linters/handlebars/embertemplatelint.vim
index 8362bb1c..17c4d08e 100644
--- a/ale_linters/handlebars/embertemplatelint.vim
+++ b/ale_linters/handlebars/embertemplatelint.vim
@@ -11,10 +11,17 @@ function! ale_linters#handlebars#embertemplatelint#GetExecutable(buffer) abort
endfunction
function! ale_linters#handlebars#embertemplatelint#GetCommand(buffer, version) abort
- " Reading from stdin was introduced in ember-template-lint@1.6.0
- return ale#semver#GTE(a:version, [1, 6, 0])
- \ ? '%e --json --filename %s'
- \ : '%e --json %t'
+ if ale#semver#GTE(a:version, [4, 0, 0])
+ " --json was removed in favor of --format=json in ember-template-lint@4.0.0
+ 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'
endfunction
function! ale_linters#handlebars#embertemplatelint#GetCommandWithVersionCheck(buffer) abort