diff options
author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2023-12-16 20:04:56 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-17 01:04:56 +0000 |
commit | b249627434d3a94420ac4d98c3ce720767e57b43 (patch) | |
tree | ec46e2c020c5a63a5c2babf56376f53e288ed7f2 /ext/js/yomitan.js | |
parent | decbc60f7734e739c0e5c41da294f65f9eec92fe (diff) |
Update eslint spacing rules (#366)
* Add space-infix-ops rule
* Add no-multi-spaces
---------
Co-authored-by: Darius Jahandarie <djahandarie@gmail.com>
Diffstat (limited to 'ext/js/yomitan.js')
-rw-r--r-- | ext/js/yomitan.js | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/ext/js/yomitan.js b/ext/js/yomitan.js index 7cf67aec..37455d00 100644 --- a/ext/js/yomitan.js +++ b/ext/js/yomitan.js @@ -88,6 +88,7 @@ export class Yomitan extends EventDispatcher { /** @type {?(() => void)} */ this._isBackendReadyPromiseResolve = resolve; + /* eslint-disable no-multi-spaces */ /** @type {import('core').MessageHandlerMap} */ this._messageHandlers = new Map(/** @type {import('core').MessageHandlerArray} */ ([ ['Yomitan.isReady', {async: false, handler: this._onMessageIsReady.bind(this)}], @@ -97,6 +98,7 @@ export class Yomitan extends EventDispatcher { ['Yomitan.databaseUpdated', {async: false, handler: this._onMessageDatabaseUpdated.bind(this)}], ['Yomitan.zoomChanged', {async: false, handler: this._onMessageZoomChanged.bind(this)}] ])); + /* eslint-enable no-multi-spaces */ } /** @@ -140,7 +142,7 @@ export class Yomitan extends EventDispatcher { * Prepares the instance for use. * @param {boolean} [isBackground=false] Assigns whether this instance is being used from the background page/service worker. */ - async prepare(isBackground=false) { + async prepare(isBackground = false) { this._isBackground = isBackground; chrome.runtime.onMessage.addListener(this._onMessage.bind(this)); |