2020-09-05 18:06:07 +00:00
|
|
|
Before:
|
|
|
|
call ale#assert#SetUpLinterTest('handlebars', 'embertemplatelint')
|
|
|
|
|
|
|
|
After:
|
|
|
|
call ale#assert#TearDownLinterTest()
|
|
|
|
|
2022-05-15 03:44:23 +00:00
|
|
|
Execute(Runs the right command for ember-template-lint >= 4.x):
|
|
|
|
GivenCommandOutput ['4.0.0']
|
|
|
|
|
2020-09-05 18:06:07 +00:00
|
|
|
AssertLinter 'ember-template-lint',
|
2022-05-15 03:44:23 +00:00
|
|
|
\ ale#Escape('ember-template-lint') . ' --format=json --filename %s'
|
|
|
|
|
2023-09-16 21:22:01 +00:00
|
|
|
Execute(Runs the right command for ember-template-lint < 4.x):
|
|
|
|
GivenCommandOutput ['3.14.0']
|
2020-09-05 18:06:07 +00:00
|
|
|
|
|
|
|
AssertLinter 'ember-template-lint',
|
2023-09-16 21:22:01 +00:00
|
|
|
\ ale#Escape('ember-template-lint') . ' --json --filename %s'
|