Конечно, IDE, такая же мощная, как NetBeans, не так уж и безразлична, но, поскольку я просто набираю код, вот как он форматируется:
$(document).ready(function() {
if (someVar > 2)
{
complain('that is not how you indent braces');
}
else if (someVar == -1)
complain('this is not right either!');
else
{
complain('but it did auto outdent the else which is smart');
complain('smart indeed');
}
});
Как я могу это исправить, чтобы оно форматировалось так:
$(document).ready(function() {
if (someVar > 2)
{
// this is how it's done
}
else if (someVar == -1)
// this is right
else
{
// correct
}
});