From 8479d84f30fafa893842b01c068546189962798c Mon Sep 17 00:00:00 2001 From: 0t4u <61939142+0t4u@users.noreply.github.com> Date: Mon, 12 Aug 2024 12:15:36 +0800 Subject: [PATCH] chore: update shared config & lint --- eslint.config.mjs | 2 +- package.json | 2 +- src/guild/Player.ts | 1 - 3 files changed, 2 insertions(+), 3 deletions(-) diff --git a/eslint.config.mjs b/eslint.config.mjs index cae7eb9d..2950cfb9 100644 --- a/eslint.config.mjs +++ b/eslint.config.mjs @@ -1,4 +1,4 @@ // @ts-check import config from '@shipgirl/eslint-config'; -export default [ ...config ]; +export default [ ...config(import.meta.dirname) ]; diff --git a/package.json b/package.json index d154bb59..132e5658 100644 --- a/package.json +++ b/package.json @@ -46,7 +46,7 @@ "devDependencies": { "@augu/eslint-config": "5.2.4", "@eslint/js": "^9.9.0", - "@shipgirl/eslint-config": "^0.1.2", + "@shipgirl/eslint-config": "^0.2.0", "@stylistic/eslint-plugin": "^2.6.2", "@types/eslint__js": "^8.42.3", "@types/node": "^22.2.0", diff --git a/src/guild/Player.ts b/src/guild/Player.ts index 170badf3..884e8711 100644 --- a/src/guild/Player.ts +++ b/src/guild/Player.ts @@ -168,7 +168,6 @@ export declare interface IPlayer { emit(event: string | symbol, ...args: unknown[]): boolean; } - /** * Wrapper object around Lavalink */