diff --git a/.eslintrc b/.eslintrc index 32698cb9019..7b8ffc00311 100644 --- a/.eslintrc +++ b/.eslintrc @@ -42,6 +42,7 @@ "invisible":true, "asyncRender":true, "selectDropdown":true, + "selectBox":true, "asyncTestDiscourse":true, "fixture":true, "find":true, diff --git a/app/assets/javascripts/discourse/components/select-box/select-box-header.js.es6 b/app/assets/javascripts/discourse/components/select-box/select-box-header.js.es6 index 475077f2a38..57d5f066ab1 100644 --- a/app/assets/javascripts/discourse/components/select-box/select-box-header.js.es6 +++ b/app/assets/javascripts/discourse/components/select-box/select-box-header.js.es6 @@ -1,5 +1,3 @@ -import computed from 'ember-addons/ember-computed-decorators'; - export default Ember.Component.extend({ classNames: "select-box-header", diff --git a/test/javascripts/models/topic-test.js.es6 b/test/javascripts/models/topic-test.js.es6 index 681a4378a7f..8738d2b91b0 100644 --- a/test/javascripts/models/topic-test.js.es6 +++ b/test/javascripts/models/topic-test.js.es6 @@ -1,4 +1,4 @@ -import { IMAGE_VERSION as v} from 'pretty-text/emoji'; +import { IMAGE_VERSION as v } from 'pretty-text/emoji'; QUnit.module("model:topic"); @@ -74,4 +74,4 @@ QUnit.test('fancyTitle', assert => { assert.equal(topic.get('fancyTitle'), `smile with all slight_smile the emojis pearpeach`, "supports emojis"); -}); \ No newline at end of file +});