prettier-vscode icon indicating copy to clipboard operation
prettier-vscode copied to clipboard

TS configuration does not wrap

Open NoRainLand opened this issue 1 year ago • 0 comments
trafficstars

HI😊,I want a switch to control line breaks, as follows:

let obj = true;
if(obj){//test
    console.log('123');
}
//format:
✔:
let obj = true;
if(obj){  //test 
    console.log('123');
}
❌:
let obj = true;
if(obj){
    //test 
    console.log('123');
}

Looking forward to your reply😊

NoRainLand avatar Jun 18 '24 08:06 NoRainLand