From d9c1f6f0884efe564329b4fc1ab45c35f72e1624 Mon Sep 17 00:00:00 2001 From: Peter Jaszkowiak Date: Fri, 17 Feb 2017 22:20:45 -0700 Subject: [PATCH] ESlint no-extra-semi --- .eslintrc | 2 +- public/src/client/topic/posts.js | 2 +- public/src/modules/helpers.js | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.eslintrc b/.eslintrc index d11613a4fd..96041347bc 100644 --- a/.eslintrc +++ b/.eslintrc @@ -110,7 +110,7 @@ "array-bracket-spacing": "off", "object-property-newline": "off", "no-continue": "off", - "no-extra-semi": "off", + // "no-extra-semi": "off", // "no-spaced-func": "off", // "no-useless-return": "off" } diff --git a/public/src/client/topic/posts.js b/public/src/client/topic/posts.js index 22d75dad80..edc0a6298c 100644 --- a/public/src/client/topic/posts.js +++ b/public/src/client/topic/posts.js @@ -325,7 +325,7 @@ define('forum/topic/posts', [ Posts.wrapImagesInLinks(posts); posts.length = 0; } - }; + } // For each image, reset the source and adjust scrollTop when loaded visible.attr('data-state', 'loading'); diff --git a/public/src/modules/helpers.js b/public/src/modules/helpers.js index ec6e443921..97dc55dfa8 100644 --- a/public/src/modules/helpers.js +++ b/public/src/modules/helpers.js @@ -1,4 +1,4 @@ -;(function (exports) { +(function (exports) { "use strict";