JavaScript code Style question

Maybe I'm missing something buy I'm trying to creatr this code structure and can't find where to set it.

instead of

var foo,
          bar,
          fooBar;

I want to get:

var foo,
     bar,
     fooBar;

its not critical but I wonder if there is a setup fir this kind of code styling.

Thanks!

0
2 comments

You can change the number of spaces before "bar" and "fooBar" using "Continuation Indent" setting under Settings/Code Style/General/JavaScript.

0

Thank you!
this is the one i've been missing i knew about this option but i was looking in the wrong place ;)

0

Please sign in to leave a comment.