Align variable declaration
Hello. Is there a way to have a code style where variable declaration are aligned (for javascript)?
For instance:
var test = 1;
var reallylongvarname = 2;
would become:
var test = 1;
var reallylongvarname = 2;
I have looked into 'Coding Style' and couldn't find any option that does this. The closest match to what I want was aligning for ':' in property declaration.
I personally would love this.
M.
请先登录再写评论。
There is no such option; please vote for http://youtrack.jetbrains.com/issue/WEB-6277