Add more eslint rules

This commit is contained in:
Vendicated 2022-10-08 20:36:57 +02:00
parent 0109381a4f
commit dea34503ef
No known key found for this signature in database
GPG key ID: EC781ADFB93EFFA3
13 changed files with 33 additions and 21 deletions

View file

@ -82,6 +82,8 @@ export function unregisterCommand(name: string) {
BUILT_IN.splice(idx, 1);
delete commands[name];
return true;
}
export interface CommandContext {

View file

@ -42,7 +42,7 @@ function withDispatcher(dispatcher: React.Dispatch<React.SetStateAction<boolean>
dispatcher(false);
}
};
};
}
interface CommonProps {
repo: string;

View file

@ -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 {

View file

@ -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);

View file

@ -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,
});
};
}

View file

@ -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) {

View file

@ -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);
}

View file

@ -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

View file

@ -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.

View file

@ -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
});
}