diff options
Diffstat (limited to 'test/indent/javascript/deindent-complex-brace-structure/out')
| -rw-r--r-- | test/indent/javascript/deindent-complex-brace-structure/out | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/test/indent/javascript/deindent-complex-brace-structure/out b/test/indent/javascript/deindent-complex-brace-structure/out new file mode 100644 index 00000000..1d675934 --- /dev/null +++ b/test/indent/javascript/deindent-complex-brace-structure/out @@ -0,0 +1,12 @@ +for (let i = 1; i < 5; ++i) { + if (true) { + console.log( + { + foo: { bar: 1 }, + }, + { + baz: { bam: 2 }, + }, + ); + } +} |
