support ember-template-lint 4.x (#4200)

* support ember-template-lint 4.x

* update ember-template-lint linter test
This commit is contained in:
James C. Davis
2022-05-14 23:44:23 -04:00
committed by GitHub
parent e6ca599e87
commit 5479b58660
2 changed files with 22 additions and 9 deletions

View File

@@ -1,17 +1,23 @@
Before:
call ale#assert#SetUpLinterTest('handlebars', 'embertemplatelint')
GivenCommandOutput ['1.6.0']
After:
call ale#assert#TearDownLinterTest()
Execute(ember-template-lint executables runs the right command):
Execute(Runs the right command for ember-template-lint >= 4.x):
GivenCommandOutput ['4.0.0']
AssertLinter 'ember-template-lint',
\ ale#Escape('ember-template-lint') . ' --format=json --filename %s'
Execute(Runs the right command for ember-template-lint >= 1.6, < 4.x):
GivenCommandOutput ['1.6.0']
AssertLinter 'ember-template-lint',
\ ale#Escape('ember-template-lint') . ' --json --filename %s'
Execute(old ember-template-lint executables runs the right command):
GivenCommandOutput []
Execute(Runs the right command for ember-template-lint < 1.6):
GivenCommandOutput ['1.5.0']
AssertLinter 'ember-template-lint',
\ ale#Escape('ember-template-lint') . ' --json %t'