Finally got this repo set up nice I think
This commit is contained in:
16
apps/next/eslint.config.ts
Normal file
16
apps/next/eslint.config.ts
Normal file
@@ -0,0 +1,16 @@
|
||||
import { defineConfig } from "eslint/config";
|
||||
|
||||
import { baseConfig, restrictEnvAccess } from "@gib/eslint-config/base";
|
||||
import { nextjsConfig } from "@gib/eslint-config/nextjs";
|
||||
import { reactConfig } from "@gib/eslint-config/react";
|
||||
|
||||
export default defineConfig(
|
||||
{
|
||||
ignores: [".next/**"],
|
||||
},
|
||||
baseConfig,
|
||||
reactConfig,
|
||||
nextjsConfig,
|
||||
restrictEnvAccess,
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user