[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.
|
||||
|
||||
/* 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) {
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue