Skip to content

Commit d5a71d2

Browse files
committed
lint and type checks
1 parent cb9da6a commit d5a71d2

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

frontend/.eslintrc.json

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,9 @@
55
// "plugin:prettier/recommended"
66
],
77
"parser": "@typescript-eslint/parser",
8-
"plugins": ["@typescript-eslint"]
9-
// "rules": {
8+
"plugins": ["@typescript-eslint"],
9+
"rules": {
10+
"@typescript-eslint/no-explicit-any": "off"
1011
// "prettier/prettier": ["error", { "endOfLine": "auto" }]
11-
// }
12+
}
1213
}

frontend/src/components/ResourcesAndContacts/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// import DiscordLogo from "@/public/assets/discord_logo.svg"
22
import Image from 'next/image';
3-
import { stage1, stage2, stage3 } from '/public/data/resourceCards';
3+
import { stage1, stage2, stage3 } from '../../../public/data/resourceCards';
44

55
const boxStyling =
66
'border border-[#595F6D] rounded-lg hover:border-[#788093] hover:bg-[#070034] hover:bg-opacity-75 transition-all duration-300';

frontend/src/components/Sponsors/index.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
import Link from 'next/link';
21
import React from 'react';
32
import Footer from '@/components/Footer';
43

0 commit comments

Comments
 (0)