"max-statements-per-line": "off",
"new-cap": "off",
"no-else-return": "off",
- "no-empty": "off",
"no-inline-comments": "off",
"no-invalid-this": "off",
"no-negated-condition": "off",
$.each(data, function (i, item) {
var widget = "";
- if (i === "auth") {}
- else if (i === "error") {}
- else if (i === "version") {
+ if (i === "auth" || i === "error") { return true; } // Skip to the next iteration
+ if (i === "version") {
widget = "<div class=\"left\"><strong>" + item + "</strong>" +
i + "</div>";
$(widget).appendTo(widgets);