From f6e60dec93b8d30bb76e0975c689da631d4a0846 Mon Sep 17 00:00:00 2001 From: BrightTheBackpack <100brightli@gmail.com> Date: Mon, 25 Nov 2024 23:07:15 -0800 Subject: [PATCH] change eslint rules --- .eslintrc.json | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/.eslintrc.json b/.eslintrc.json index 3722418..86f44bd 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -1,3 +1,11 @@ { - "extends": ["next/core-web-vitals", "next/typescript"] + "parser": "@typescript-eslint/parser", + "plugins": ["@typescript-eslint"], + "extends": [ + "eslint:recommended", + "plugin:@typescript-eslint/recommended" + ], + "rules": { + // your custom rules + } }