JavaScript Closing Bracket Is At Indent Of Function Call
The closing brace should be on the same indent as the original function call.
Good Example:
function func() {
return {
"name": "Batman"
};
}
Bad Example:
function func() {
return {
"name": "Batman"
};
}