Skip to content

Commit 841b361

Browse files
Merge pull request #1232 from dank074/patch/eslintConfig
2 parents 762287e + f499507 commit 841b361

16 files changed

+84
-39
lines changed

.eslintignore

-7
This file was deleted.

.eslintrc

-14
This file was deleted.

eslint.config.mjs

+47
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
import typescriptEslint from "@typescript-eslint/eslint-plugin";
2+
import globals from "globals";
3+
import tsParser from "@typescript-eslint/parser";
4+
import path from "node:path";
5+
import { fileURLToPath } from "node:url";
6+
import js from "@eslint/js";
7+
import { FlatCompat } from "@eslint/eslintrc";
8+
9+
const __filename = fileURLToPath(import.meta.url);
10+
const __dirname = path.dirname(__filename);
11+
const compat = new FlatCompat({
12+
baseDirectory: __dirname,
13+
recommendedConfig: js.configs.recommended,
14+
allConfig: js.configs.all
15+
});
16+
17+
export default [{
18+
ignores: [
19+
"**/node_modules",
20+
"**/dist",
21+
"**/README.md",
22+
"**/COPYING",
23+
"src/webrtc",
24+
"**/scripts/",
25+
"**/assets",
26+
],
27+
}, ...compat.extends("eslint:recommended", "plugin:@typescript-eslint/recommended"), {
28+
plugins: {
29+
"@typescript-eslint": typescriptEslint,
30+
},
31+
32+
languageOptions: {
33+
globals: {
34+
...globals.node,
35+
},
36+
37+
parser: tsParser,
38+
},
39+
40+
rules: {
41+
"no-mixed-spaces-and-tabs": "off",
42+
"@typescript-eslint/no-inferrable-types": "off", // Required by typeorm
43+
"@typescript-eslint/no-var-requires": "off", // Sometimes requred by typeorm to resolve circular deps
44+
"@typescript-eslint/no-require-imports": "off",
45+
"@typescript-eslint/no-unused-vars": "off",
46+
},
47+
}];

package-lock.json

+30-9
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+3
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,8 @@
3838
},
3939
"homepage": "https://spacebar.chat",
4040
"devDependencies": {
41+
"@eslint/eslintrc": "^3.1.0",
42+
"@eslint/js": "^9.14.0",
4143
"@types/amqplib": "^0.10.5",
4244
"@types/bcrypt": "^5.0.2",
4345
"@types/body-parser": "^1.19.5",
@@ -61,6 +63,7 @@
6163
"@typescript-eslint/parser": "^8.12.2",
6264
"eslint": "^9.13.0",
6365
"express": "^4.21.1",
66+
"globals": "^15.12.0",
6467
"husky": "^9.1.6",
6568
"prettier": "^3.3.3",
6669
"pretty-quick": "^4.0.0",

src/api/middlewares/Authentication.ts

-1
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,6 @@ export async function Authentication(
108108
req.rights = new Rights(Number(user.rights));
109109
return next();
110110
} catch (error) {
111-
// eslint-disable-next-line @typescript-eslint/no-non-null-assertion
112111
return next(new HTTPError(error!.toString(), 400));
113112
}
114113
}

src/api/routes/auth/reset.ts

-1
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,6 @@ router.post(
7272
await User.update({ id: user.id }, data);
7373

7474
// come on, the user has to have an email to reset their password in the first place
75-
// eslint-disable-next-line @typescript-eslint/no-non-null-assertion
7675
await Email.sendPasswordChanged(user, user.email!);
7776

7877
res.json({ token: await generateToken(user.id) });

src/gateway/opcodes/Identify.ts

-1
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,6 @@ export async function onIdentify(this: WebSocket, data: Payload) {
171171
// but we do want almost everything from guild.
172172
// How do you do that without just enumerating the guild props?
173173
guild: Object.fromEntries(
174-
// eslint-disable-next-line @typescript-eslint/no-non-null-assertion
175174
getDatabase()!
176175
.getMetadata(Guild)
177176
.columns.map((x) => [x.propertyName, true]),

src/gateway/opcodes/LazyRequest.ts

-1
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,6 @@ async function subscribeToMemberEvents(this: WebSocket, user_id: string) {
214214
export async function onLazyRequest(this: WebSocket, { d }: Payload) {
215215
// TODO: check data
216216
check.call(this, LazyRequestSchema, d);
217-
// eslint-disable-next-line @typescript-eslint/no-unused-vars
218217
const { guild_id, typing, channels, activities, members } =
219218
d as LazyRequestSchema;
220219

src/gateway/opcodes/VoiceStateUpdate.ts

-1
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,6 @@ export async function onVoiceStateUpdate(this: WebSocket, data: Payload) {
9999
voiceState.token = genVoiceToken();
100100
voiceState.session_id = this.session_id;
101101

102-
// eslint-disable-next-line @typescript-eslint/no-unused-vars
103102
const { id, ...newObj } = voiceState;
104103

105104
await Promise.all([

src/util/entities/BaseClass.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ export class BaseClassWithoutId extends BaseEntity {
4646
// eslint-disable-next-line @typescript-eslint/no-explicit-any
4747
toJSON(): any {
4848
return Object.fromEntries(
49-
// eslint-disable-next-line @typescript-eslint/ban-ts-comment, @typescript-eslint/no-non-null-assertion
49+
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
5050
this.metadata!.columns // @ts-ignore
5151
.map((x) => [x.propertyName, this[x.propertyName]])
5252
.concat(

src/util/schemas/MessageCreateSchema.ts

-1
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,6 @@ export interface MessageCreateSchema {
6969
}
7070

7171
// TypeScript complains once this is used above
72-
// eslint-disable-next-line @typescript-eslint/no-unused-vars
7372
interface PollCreationSchema {
7473
question: PollMedia;
7574
answers: PollAnswer[];

src/util/schemas/responses/TeamListResponse.ts

+1
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,5 @@
1818

1919
import { Team } from "@spacebar/util";
2020

21+
// eslint-disable-next-line @typescript-eslint/no-empty-object-type
2122
export interface TeamListResponse extends Array<Team> {}

src/util/util/AutoUpdate.ts

-1
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,6 @@ export function enableAutoUpdate(opts: {
7070
});
7171
}
7272

73-
// eslint-disable-next-line @typescript-eslint/no-unused-vars
7473
async function download(url: string, dir: string) {
7574
try {
7675
// TODO: use file stream instead of buffer (to prevent crash because of high memory usage for big files)

src/util/util/Event.ts

+1
Original file line numberDiff line numberDiff line change
@@ -100,6 +100,7 @@ export async function listenEvent(
100100
};
101101

102102
const listener = (msg: ProcessEvent) => {
103+
// eslint-disable-next-line @typescript-eslint/no-unused-expressions
103104
msg.type === "event" &&
104105
msg.id === event &&
105106
callback({ ...msg.event, cancel });

src/util/util/Sentry.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ export const Sentry = {
117117
Integrations.setupExpressErrorHandler(app);
118118

119119
// The typings for this are broken?
120-
// eslint-disable-next-line @typescript-eslint/no-explicit-any, @typescript-eslint/no-unused-vars
120+
// eslint-disable-next-line @typescript-eslint/no-explicit-any
121121
app.use(function onError(err: any, req: any, res: any, next: any) {
122122
res.statusCode = 500;
123123
res.end(res.sentry + "\n");

0 commit comments

Comments
 (0)