From fe6a1bc7169cbf7e55a8203ef0bed787f5b5e4d8 Mon Sep 17 00:00:00 2001 From: Jeldrik Hanschke Date: Sun, 31 May 2020 10:53:39 +0200 Subject: [PATCH] invalid indentation for multiline This adds a failing test that indentation is invalid (accordingly to default template linting) if `` uses multiple lines for it's arguments and attributes on input: Taking this input: ```hbs @placeholder="foo"> /> ``` I would expect an output, which passes template linting. An example would be: ```hbs ``` But I see this one as demonstrated by failing test: ```hbs ``` Template linter throws errors due to indentation of `` and ``. --- .../__testfixtures__/form.input.hbs | 7 +++++++ .../__testfixtures__/form.output.hbs | 9 +++++++++ 2 files changed, 16 insertions(+) diff --git a/transforms/deprecated-attribute-arguments/__testfixtures__/form.input.hbs b/transforms/deprecated-attribute-arguments/__testfixtures__/form.input.hbs index 09f9703..e68b1fe 100644 --- a/transforms/deprecated-attribute-arguments/__testfixtures__/form.input.hbs +++ b/transforms/deprecated-attribute-arguments/__testfixtures__/form.input.hbs @@ -9,3 +9,10 @@ + + + + \ No newline at end of file diff --git a/transforms/deprecated-attribute-arguments/__testfixtures__/form.output.hbs b/transforms/deprecated-attribute-arguments/__testfixtures__/form.output.hbs index 6f7aaba..57dc571 100644 --- a/transforms/deprecated-attribute-arguments/__testfixtures__/form.output.hbs +++ b/transforms/deprecated-attribute-arguments/__testfixtures__/form.output.hbs @@ -9,3 +9,12 @@ + + + + + +