

You mean alignment of arguments or multiline strings in example? If they are not on their own line, then it does not matter to me. If they start on their own line, then mixing spaces and tabs isn’t a good idea to me. In example for function calls with a bit more complex calls and multiple arguments, I put them in their own line each. They are indented and therefore indentation level plays. If they are on the same line, I never align them and if I would, it would be spaces. In general:
function() {
....var = 1
....another_var = 2
....indented(arg, arg2, arg3)
....indented(arg,
.............arg2,
.............arg3)
}
Perverts!