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

@@ -206,9 +206,9 @@ exports.set_up = function () {
// Populate users and bots tables
channel.get({
url: '/json/users',
url: '/json/users',
idempotent: true,
timeout: 10 * 1000,
timeout: 10 * 1000,
success: exports.on_load_success,
error: failed_listing_users,
});