microsoft / TypeScript-Sublime-Plugin

IO wrapper around TypeScript language services, allowing for easy consumption by editor plugins
Apache License 2.0
1.72k stars 235 forks source link

if several conditions #682

Open chemoral87 opened 5 years ago

chemoral87 commented 5 years ago

when you write a if with two condition and format the code, it indent incorrect.

example function test () { if ( 1== 1 / supposed a return carriage here / && 2== 2 ) { console.log("ok"); } }