[Chore] Remove linter commnents
This commit is contained in:
parent
fce71429bd
commit
82eaca1f72
2 changed files with 1 additions and 4 deletions
|
@ -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.
|
// Disabled because Rust interop stuff is going on in here.
|
||||||
|
|
||||||
/* eslint-disable camelcase */
|
|
||||||
|
|
||||||
class TaskProgress {
|
class TaskProgress {
|
||||||
constructor() {
|
constructor() {
|
||||||
this.inProgress = new Map();
|
this.inProgress = new Map();
|
||||||
|
@ -193,7 +191,6 @@ async function updateUntilCurrent() {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
/* eslint-enable camelcase */
|
|
||||||
|
|
||||||
const oldCheckForUpdates = () => {
|
const oldCheckForUpdates = () => {
|
||||||
if (oaConfig.skipStartupUpdateChecks !== true) {
|
if (oaConfig.skipStartupUpdateChecks !== true) {
|
||||||
|
|
|
@ -257,7 +257,7 @@ function init(_endpoint, _settings, _buildInfo) {
|
||||||
hostUpdater.on('update-downloaded', () => hostOnUpdateDownloaded());
|
hostUpdater.on('update-downloaded', () => hostOnUpdateDownloaded());
|
||||||
hostUpdater.on('error', err => hostOnError(err));
|
hostUpdater.on('error', err => hostOnError(err));
|
||||||
const setFeedURL = hostUpdater.setFeedURL.bind(hostUpdater);
|
const setFeedURL = hostUpdater.setFeedURL.bind(hostUpdater);
|
||||||
remoteBaseURL = `${endpoint}/modules/${buildInfo.releaseChannel}`; // eslint-disable-next-line camelcase
|
remoteBaseURL = `${endpoint}/modules/${buildInfo.releaseChannel}`;
|
||||||
|
|
||||||
remoteQuery = {
|
remoteQuery = {
|
||||||
host_version: buildInfo.version
|
host_version: buildInfo.version
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue