aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVendicated <vendicated@riseup.net>2022-10-08 20:36:57 +0200
committerVendicated <vendicated@riseup.net>2022-10-08 20:36:57 +0200
commitdea34503ef61fe8f2600d2d9b0edb2eec90ebd1b (patch)
treebf4a0037dbecb8b9b00413c59f1af2b434d561e6
parent0109381a4f5a513a23258130bca06d40fcbc8ea9 (diff)
downloadVencord-dea34503ef61fe8f2600d2d9b0edb2eec90ebd1b.tar.gz
Vencord-dea34503ef61fe8f2600d2d9b0edb2eec90ebd1b.tar.bz2
Vencord-dea34503ef61fe8f2600d2d9b0edb2eec90ebd1b.zip
Add more eslint rules
-rw-r--r--.eslintrc.json14
-rw-r--r--browser/VencordNativeStub.ts2
-rw-r--r--scripts/patcher/install.js2
-rw-r--r--src/api/Commands.ts2
-rw-r--r--src/components/Updater.tsx2
-rw-r--r--src/plugins/betterGifAltText.ts2
-rw-r--r--src/plugins/nitroBypass.ts4
-rw-r--r--src/plugins/quickreply.ts14
-rw-r--r--src/preload.ts3
-rw-r--r--src/utils/IpcEvents.ts2
-rw-r--r--src/utils/misc.tsx2
-rw-r--r--src/utils/modal.tsx2
-rw-r--r--src/webpack/patchWebpack.ts3
13 files changed, 33 insertions, 21 deletions
diff --git a/.eslintrc.json b/.eslintrc.json
index 2d51750..0807154 100644
--- a/.eslintrc.json
+++ b/.eslintrc.json
@@ -23,6 +23,18 @@
"semi-style": ["error", "last"],
"space-in-parens": ["error", "never"],
"block-spacing": ["error", "always"],
- "object-curly-spacing": ["error", "always"]
+ "object-curly-spacing": ["error", "always"],
+ "eqeqeq": ["error", "always", { "null": "ignore" }],
+ "spaced-comment": ["error", "always"],
+ "yoda": "error",
+ "prefer-destructuring": ["error", { "object": true, "array": false }],
+ "operator-assignment": ["error", "always"],
+ "no-useless-computed-key": "error",
+ "no-unneeded-ternary": ["error", { "defaultAssignment": false }],
+ "no-invalid-regexp": "error",
+ "no-constant-condition": ["error", { "checkLoops": false }],
+ "no-duplicate-imports": "error",
+ "no-extra-semi": "error",
+ "consistent-return": ["error", { "treatUndefinedAsUnspecified": true }]
}
}
diff --git a/browser/VencordNativeStub.ts b/browser/VencordNativeStub.ts
index bdcae4e..b6d1121 100644
--- a/browser/VencordNativeStub.ts
+++ b/browser/VencordNativeStub.ts
@@ -1,7 +1,7 @@
import IpcEvents from "../src/utils/IpcEvents";
// Discord deletes this so need to store in variable
-var localStorage = window.localStorage;
+var { localStorage } = window;
const handlers = {
[IpcEvents.GET_REPO]: () => "", // TODO
diff --git a/scripts/patcher/install.js b/scripts/patcher/install.js
index c9babc8..4e75dbe 100644
--- a/scripts/patcher/install.js
+++ b/scripts/patcher/install.js
@@ -43,7 +43,7 @@ async function install(installations) {
// Attempt to give flatpak perms
if (selected.isFlatpak) {
try {
- const branch = selected.branch;
+ const { branch } = selected;
const cwd = process.cwd();
const globalCmd = `flatpak override ${branch} --filesystem=${cwd}`;
const userCmd = `flatpak override --user ${branch} --filesystem=${cwd}`;
diff --git a/src/api/Commands.ts b/src/api/Commands.ts
index 10503e9..907a65d 100644
--- a/src/api/Commands.ts
+++ b/src/api/Commands.ts
@@ -82,6 +82,8 @@ export function unregisterCommand(name: string) {
BUILT_IN.splice(idx, 1);
delete commands[name];
+
+ return true;
}
export interface CommandContext {
diff --git a/src/components/Updater.tsx b/src/components/Updater.tsx
index 5e7e84f..31060b4 100644
--- a/src/components/Updater.tsx
+++ b/src/components/Updater.tsx
@@ -42,7 +42,7 @@ function withDispatcher(dispatcher: React.Dispatch<React.SetStateAction<boolean>
dispatcher(false);
}
};
-};
+}
interface CommonProps {
repo: string;
diff --git a/src/plugins/betterGifAltText.ts b/src/plugins/betterGifAltText.ts
index 08fa07b..4712f71 100644
--- a/src/plugins/betterGifAltText.ts
+++ b/src/plugins/betterGifAltText.ts
@@ -26,7 +26,7 @@ export default definePlugin({
],
altify(props: any) {
- if (props.alt !== "GIF") return;
+ if (props.alt !== "GIF") return props.alt;
let url: string = props.original || props.src;
try {
diff --git a/src/plugins/nitroBypass.ts b/src/plugins/nitroBypass.ts
index e3b6747..8920bc6 100644
--- a/src/plugins/nitroBypass.ts
+++ b/src/plugins/nitroBypass.ts
@@ -55,7 +55,7 @@ export default definePlugin({
}
this.preSend = addPreSendListener((_, messageObj) => {
- const guildId = this.guildId;
+ const { guildId } = this;
for (const emoji of messageObj.validNonShortcutEmojis) {
if (!emoji.require_colons) continue;
if (emoji.guildId === guildId && !emoji.animated) continue;
@@ -69,7 +69,7 @@ export default definePlugin({
});
this.preEdit = addPreEditListener((_, __, messageObj) => {
- const guildId = this.guildId;
+ const { guildId } = this;
for (const [emojiStr, _, emojiId] of messageObj.content.matchAll(/(?<!\\)<a?:(\w+):(\d+)>/ig)) {
const emoji = getCustomEmojiById(emojiId);
diff --git a/src/plugins/quickreply.ts b/src/plugins/quickreply.ts
index 111d9bb..f1a8451 100644
--- a/src/plugins/quickreply.ts
+++ b/src/plugins/quickreply.ts
@@ -15,21 +15,21 @@ export default definePlugin({
start() {
Dispatcher.subscribe("DELETE_PENDING_REPLY", onDeletePendingReply);
- document.addEventListener("keydown", keydown);
+ document.addEventListener("keydown", onKeydown);
},
stop() {
Dispatcher.unsubscribe("DELETE_PENDING_REPLY", onDeletePendingReply);
- document.removeEventListener("keydown", keydown);
+ document.removeEventListener("keydown", onKeydown);
},
});
let idx = -1;
-const onDeletePendingReply = () => {
+function onDeletePendingReply() {
idx = -1;
-};
+}
-const keydown = e => {
+function onKeydown(e: KeyboardEvent) {
if (
(!e.ctrlKey && !e.metaKey) ||
(e.key !== "ArrowUp" && e.key !== "ArrowDown")
@@ -46,7 +46,7 @@ const keydown = e => {
if (idx > messages.length) idx = messages.length;
if (idx < 0) {
- return Dispatcher.dispatch({
+ return void Dispatcher.dispatch({
type: "DELETE_PENDING_REPLY",
channelId,
});
@@ -58,4 +58,4 @@ const keydown = e => {
message: messages[idx],
showMentionToggle: channel.guild_id !== null,
});
-};
+}
diff --git a/src/preload.ts b/src/preload.ts
index 9578bf6..31558f5 100644
--- a/src/preload.ts
+++ b/src/preload.ts
@@ -1,8 +1,7 @@
-import electron, { contextBridge, webFrame } from "electron";
+import electron, { contextBridge, webFrame, ipcRenderer } from "electron";
import { readFileSync } from "fs";
import { join } from "path";
import VencordNative from "./VencordNative";
-import { ipcRenderer } from "electron";
import IpcEvents from "./utils/IpcEvents";
if (electron.desktopCapturer === void 0) {
diff --git a/src/utils/IpcEvents.ts b/src/utils/IpcEvents.ts
index b96abdc..6b906f1 100644
--- a/src/utils/IpcEvents.ts
+++ b/src/utils/IpcEvents.ts
@@ -7,7 +7,7 @@ function strEnum<T extends Record<string, string>>(obj: T): T {
for (const key in obj) {
o[key] = obj[key] as any;
o[obj[key]] = key as any;
- };
+ }
return Object.freeze(o);
}
diff --git a/src/utils/misc.tsx b/src/utils/misc.tsx
index 989a54a..2ebf91c 100644
--- a/src/utils/misc.tsx
+++ b/src/utils/misc.tsx
@@ -56,7 +56,7 @@ export function useAwaiter<T>(factory: () => Promise<T>, fallbackValue: T | null
}, []);
return [state.value, state.error, state.pending];
-};
+}
/**
* A lazy component. The factory method is called on first render. For example useful
diff --git a/src/utils/modal.tsx b/src/utils/modal.tsx
index f59c26c..b8e647c 100644
--- a/src/utils/modal.tsx
+++ b/src/utils/modal.tsx
@@ -25,7 +25,7 @@ export function openModal(Component: React.ComponentType, modalProps: Record<str
), { modalKey: key });
return key;
-};
+}
/**
* Close a modal by key. The id you need for this is returned by openModal.
diff --git a/src/webpack/patchWebpack.ts b/src/webpack/patchWebpack.ts
index dd7b537..7f5dbf6 100644
--- a/src/webpack/patchWebpack.ts
+++ b/src/webpack/patchWebpack.ts
@@ -50,7 +50,7 @@ function patchPush() {
if (mod === originalMod) throw err;
logger.error("Error in patched chunk", err);
- return originalMod(module, exports, require);
+ return void originalMod(module, exports, require);
}
// There are (at the time of writing) 11 modules exporting the window
@@ -145,4 +145,3 @@ function patchPush() {
configurable: true
});
}
-