From 0d5e1214a5c386a168dc8e19d7da0ceb0e0bd6f2 Mon Sep 17 00:00:00 2001 From: Dennis van den Berg Date: Tue, 16 Jul 2024 20:29:19 +0200 Subject: feat: add indentation queries for angular --- tests/indent/angular/switch-case.html | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 tests/indent/angular/switch-case.html (limited to 'tests/indent/angular/switch-case.html') diff --git a/tests/indent/angular/switch-case.html b/tests/indent/angular/switch-case.html new file mode 100644 index 000000000..17df96609 --- /dev/null +++ b/tests/indent/angular/switch-case.html @@ -0,0 +1,13 @@ +
+ @switch (obj.property) { + @case (1) { +

Case 1

+ } + @case (2) { +

Case 2

+ } + @default { +

Default

+ } + } +
-- cgit v1.3.1