**TypeScript Version:** 2.4.1 **Code** set typescript.format.insertSpaceAfterOpeningAndBeforeClosingNonemptyBrackets to true Format this code: ```ts let x = [ { a: 1 }]; ``` **Expected behavior:** Space is added between } and ]. I.E.: ```ts let x = [ { a: 1 } ]; ``` **Actual behavior:** No space is added and the code fails tslint ```ts let x = [ { a: 1 }]; ```
TypeScript Version: 2.4.1
Code
set typescript.format.insertSpaceAfterOpeningAndBeforeClosingNonemptyBrackets to true
Format this code:
Expected behavior:
Space is added between } and ]. I.E.:
Actual behavior:
No space is added and the code fails tslint