eslint: Add key-spacing linter rule.

Apparently, we didn't have one of these, and thus had a moderate
number of generally very old violations in the codebase.  Fix this and
clear the ones that exist..
This commit is contained in:
Tim Abbott
2018-12-18 10:34:45 -08:00
parent 392175d6e8
commit bdb3da4504
45 changed files with 152 additions and 145 deletions

View File

@@ -4,9 +4,9 @@ var exports = {};
function set_tutorial_status(status, callback) {
return channel.post({
url: '/json/users/me/tutorial_status',
data: {status: JSON.stringify(status)},
success: callback,
url: '/json/users/me/tutorial_status',
data: {status: JSON.stringify(status)},
success: callback,
});
}