Not sure if this is a feature but if it is, I would love to be able to customize it.
Code inside functions is indented according to where the first letter of function is. This leads to a not constant indentation that depends on methods name.
var a = {
b: function(){
return;
},
hello: function(){
return;
}
}