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 @ keyword which breaks the build.
js
@test
class Test {
}
becomes
async
@
test
class Test {
}
Is there anyway to control the line breaks specifically for the @ 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 @ keyword which breaks the build. js
becomes
async
Is there anyway to control the line breaks specifically for the @ keyword?