diff --git a/.jscsrc b/.jscsrc index 0b9196ce3fb..22fc35fe7fe 100644 --- a/.jscsrc +++ b/.jscsrc @@ -5,5 +5,8 @@ "requireCamelCaseOrUpperCaseIdentifiers": null, "requireCommentsToIncludeAccess": null, "requireParenthesesAroundArrowParam": null, - "validateIndentation": 4 + "validateIndentation": 4, + "disallowConstOutsideModuleScope": false, + "requireSpread": false, + "disallowDirectPropertyAccess": false } diff --git a/app/router.js b/app/router.js index 657923c0e44..d858f0d5c9a 100644 --- a/app/router.js +++ b/app/router.js @@ -32,8 +32,8 @@ Router.map(function() { this.route('dashboard'); this.route('keywords'); this.route('keyword', { path: '/keywords/:keyword_id' }, function() { - this.route('index', { path: '/' }); - }); + this.route('index', { path: '/' }); + }); this.route('catchAll', { path: '*path' }); }); diff --git a/package.json b/package.json index 856049a59ce..63c8c457f73 100644 --- a/package.json +++ b/package.json @@ -44,7 +44,7 @@ "ember-page-title": "2.0.7", "ember-rl-dropdown": "0.7.0", "ember-route-alias": "^0.1.3", - "ember-suave": "1.2.3", + "ember-suave": "3.0.1", "emberx-select": "2.1.2", "loader.js": "4.0.9" },