I am currently using babel to transpile my code so that I can use the fancy new es6/7 features.
One thing that I noticed was that formatting in Sublime Text 3 puts a newline after the async keyword which breaks the build.
async function(){
}
becomes
async
function(){
}
Is there anyway to control the line breaks specifically for the async keyword?
I am currently using babel to transpile my code so that I can use the fancy new es6/7 features. One thing that I noticed was that formatting in Sublime Text 3 puts a newline after the async keyword which breaks the build.
becomes
Is there anyway to control the line breaks specifically for the async keyword?