Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 7 additions & 2 deletions apps/frontend/eslint.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,12 @@ import { defineConfig } from "eslint/config";

export default defineConfig([
{
ignores: ["**/*.test.{js,mjs,cjs,ts,mts,cts}", "**/*.config.{js,mjs,cjs,ts,mts,cts}", ".next/"],
ignores: [
"**/*.test.{js,mjs,cjs,ts,mts,cts}",
"**/*.config.{js,mjs,cjs,ts,mts,cts}",
".next/",
"next-env.d.ts",
],
},
{
files: ["**/*.{js,mjs,cjs,ts,mts,cts,jsx,tsx}"],
Expand All @@ -22,7 +27,7 @@ export default defineConfig([
...tseslint.configs.recommended,
react.configs.flat.recommended,
{
plugins: { react },
plugins: { "@typescript-eslint": tseslint.plugin, react },
rules: {
"react/react-in-jsx-scope": "off",
"react/jsx-uses-react": "off",
Expand Down
351 changes: 192 additions & 159 deletions apps/frontend/package-lock.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion apps/frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"lint": "next lint"
},
"dependencies": {
"next": "15.2.4",
"next": "^15.5.2",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-loading-skeleton": "^3.5.0",
Expand Down
1 change: 0 additions & 1 deletion apps/frontend/src/components/CookieBanner.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
/* eslint-disable @typescript-eslint/no-explicit-any */
"use client";

import { useEffect, useRef, useState } from "react";
Expand Down
2 changes: 0 additions & 2 deletions apps/frontend/src/lib/jobHandler.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,7 @@ export async function handleJob<T>({
jobStatusChecker: JobStatusChecker;
mutate: KeyedMutator<T>;
optimisticUpdate?: OptimisticUpdate<T>;
// eslint-disable-next-line @typescript-eslint/no-explicit-any
onSuccess?: (result: any) => void;
// eslint-disable-next-line @typescript-eslint/no-explicit-any
onError?: ({ error, data }: { error?: Error; data?: any }) => void;
onProgress?: onProgress;
}) {
Expand Down
3 changes: 0 additions & 3 deletions apps/landing/.eslintrc.json

This file was deleted.

1 change: 0 additions & 1 deletion apps/landing/components/CookieBanner.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
/* eslint-disable @typescript-eslint/no-explicit-any */
"use client";

import { useEffect, useRef, useState } from "react";
Expand Down
2 changes: 1 addition & 1 deletion apps/landing/eslint.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export default [
...tseslint.configs.recommended,
react.configs.flat.recommended,
{
plugins: { react },
plugins: { "@typescript-eslint": tseslint.plugin, react },
rules: {
"react/react-in-jsx-scope": "off",
"react/jsx-uses-react": "off",
Expand Down
2 changes: 1 addition & 1 deletion apps/landing/next-env.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
/// <reference types="next/image-types/global" />

// NOTE: This file should not be edited
// see https://nextjs.org/docs/basic-features/typescript for more information.
// see https://nextjs.org/docs/app/building-your-application/configuring/typescript for more information.
Loading