Line wrapping is often used in current formatting
eg:
return wepy.chooseImage({
count: 1,
sizeType: "original"
}).then(res => res.tempFilePaths[0]);
will be formatted as
return wepy
.chooseImage({
count: 1,
sizeType: "original"
})
.then(res => res.tempFilePaths[0]);
how can I turn off automatic line wrapping?