From 82eaca1f7215edb156f0a82e8114ba536b2e8fc2 Mon Sep 17 00:00:00 2001 From: Oj Date: Fri, 4 Feb 2022 18:49:47 +0000 Subject: [PATCH] [Chore] Remove linter commnents --- src/splash/index.js | 3 --- src/updater/moduleUpdater.js | 2 +- 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/src/splash/index.js b/src/splash/index.js index 2384b0e..4c89d60 100644 --- a/src/splash/index.js +++ b/src/splash/index.js @@ -90,8 +90,6 @@ const updateBackoff = new _Backoff.default(1000, 30000); // TODO(eiz): some of t // // Disabled because Rust interop stuff is going on in here. -/* eslint-disable camelcase */ - class TaskProgress { constructor() { this.inProgress = new Map(); @@ -193,7 +191,6 @@ async function updateUntilCurrent() { } } } -/* eslint-enable camelcase */ const oldCheckForUpdates = () => { if (oaConfig.skipStartupUpdateChecks !== true) { diff --git a/src/updater/moduleUpdater.js b/src/updater/moduleUpdater.js index 0bc8236..d1522de 100644 --- a/src/updater/moduleUpdater.js +++ b/src/updater/moduleUpdater.js @@ -257,7 +257,7 @@ function init(_endpoint, _settings, _buildInfo) { hostUpdater.on('update-downloaded', () => hostOnUpdateDownloaded()); hostUpdater.on('error', err => hostOnError(err)); const setFeedURL = hostUpdater.setFeedURL.bind(hostUpdater); - remoteBaseURL = `${endpoint}/modules/${buildInfo.releaseChannel}`; // eslint-disable-next-line camelcase + remoteBaseURL = `${endpoint}/modules/${buildInfo.releaseChannel}`; remoteQuery = { host_version: buildInfo.version