Enabled eslint:key-spacing

Keyspacing rules activated, discovered issues resolved.

Change-Id: I9913edf3e15bbf47e25a98c070a80a7c89e2853d
This commit is contained in:
Michael Krotscheck 2015-03-04 15:56:02 -08:00
parent 0f875e7d44
commit 8948fa0e84
2 changed files with 1 additions and 2 deletions

View File

@ -60,7 +60,6 @@
"strict": 0,
"no-underscore-dangle": 0,
"no-space-before-semi": 0,
"key-spacing": 0,
// Stylistic
"indent": [2, 4],

View File

@ -32,7 +32,7 @@ angular.module('sb.dashboard').directive('subscriptionEvent',
try {
var evt = JSON.parse(scope.subscriptionEvent);
scope.evt = evt;
scope.author = User.get({id:evt.author_id});
scope.author = User.get({id: evt.author_id});
scope.event_type = evt.event_type;
scope.created_at = evt.created_at;
} catch (e) {