question about webstorm
can anyone help me with some settings webstorm
i want have auto space between tokens, like in visual c#
when i typed:
var x=3;
or
var x+=7;
after press "enter" the code must be auto formated like:
var x = 3;
or
var x += 7;
help me please, how i can do it?
Please sign in to leave a comment.
Hi there,
WebStorm has no automatic formatting like this -- only manual invocation: Code | Reformat Code
Code formatting rules can be customised at Settings | Code Style | Java Script
i see, thanks