aboutsummaryrefslogtreecommitdiff
path: root/ext/js/background/backend.js
diff options
context:
space:
mode:
authortoasted-nutbread <toasted-nutbread@users.noreply.github.com>2024-02-14 22:26:29 -0500
committerGitHub <noreply@github.com>2024-02-15 03:26:29 +0000
commit6bf7b0055765c4f2011c9614753d6714dc09be65 (patch)
tree0e782ae66556eaa61a34d9f32d77c831b2443ce5 /ext/js/background/backend.js
parent7a4096240ce4faf70a785d047945388baa0daab3 (diff)
Eslint rule updates (#673)
* Install unicorn * Add rules * Fix issues * Install sonarjs * Set up rules * Fix issues * Install eslint-plugin-import and fix import extensions * Simplify permitted error names
Diffstat (limited to 'ext/js/background/backend.js')
-rw-r--r--ext/js/background/backend.js10
1 files changed, 4 insertions, 6 deletions
diff --git a/ext/js/background/backend.js b/ext/js/background/backend.js
index 090ba7b3..8ab56232 100644
--- a/ext/js/background/backend.js
+++ b/ext/js/background/backend.js
@@ -701,7 +701,7 @@ export class Backend {
typeof chrome.tabs.getZoom === 'function'
)) {
// Not supported
- resolve({zoomFactor: 1.0});
+ resolve({zoomFactor: 1});
return;
}
chrome.tabs.getZoom(tabId, (zoomFactor) => {
@@ -1701,10 +1701,8 @@ export class Backend {
// NOP
}
- if (okay && !done) {
- if (add(item)) {
- done = true;
- }
+ if (okay && !done && add(item)) {
+ done = true;
}
};
@@ -2294,7 +2292,7 @@ export class Backend {
*/
_replaceInvalidFileNameCharacters(fileName) {
// eslint-disable-next-line no-control-regex
- return fileName.replace(/[<>:"/\\|?*\x00-\x1F]/g, '-');
+ return fileName.replace(/[<>:"/\\|?*\u0000-\u001F]/g, '-');
}
/**