File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1-
21"use client" ;
32import { MainHomeLayout } from "@repo/web-ui/layout" ;
43import React , { useCallback , Suspense } from "react" ;
@@ -77,15 +76,3 @@ export default function Home() {
7776 ) ;
7877}
7978
80- import { Suspense } from "react" ;
81- import "./page.module.css" ;
82- import TabContents from "./tabs" ;
83-
84- export default function Home ( ) {
85- return (
86- < Suspense fallback = { < div > Loading...</ div > } >
87- < TabContents />
88- </ Suspense >
89- ) ;
90- }
91-
Original file line number Diff line number Diff line change 11import { nextJsConfig } from "@repo/eslint-config/next-js" ;
22
3- /** @type {import("eslint").Linter.Config } */
4- export default nextJsConfig ;
3+ /** @type {import("eslint").Linter.FlatConfig[] } */
4+ export default [
5+ // spread the shared flat config
6+ ...nextJsConfig ,
7+
8+ // add your overrides locally
9+ {
10+ files : [ "**/*.ts" , "**/*.tsx" ] ,
11+ rules : {
12+ "@typescript-eslint/no-unused-vars" : "off" ,
13+ "@typescript-eslint/no-explicit-any" : "off" ,
14+ } ,
15+ } ,
16+ ] ;
Original file line number Diff line number Diff line change 77 "dev" : " next dev --turbopack --port 3000" ,
88 "build" : " next build" ,
99 "start" : " next start" ,
10- "lint" : " next lint --max-warnings 0 " ,
10+ "lint" : " next lint --max-warnings 999 " ,
1111 "check-types" : " tsc --noEmit"
1212 },
1313 "dependencies" : {
You can’t perform that action at this time.
0 commit comments