summaryrefslogtreecommitdiff
path: root/frontend/eslint.config.mjs
diff options
context:
space:
mode:
Diffstat (limited to 'frontend/eslint.config.mjs')
-rw-r--r--frontend/eslint.config.mjs14
1 files changed, 14 insertions, 0 deletions
diff --git a/frontend/eslint.config.mjs b/frontend/eslint.config.mjs
new file mode 100644
index 0000000..9dd3905
--- /dev/null
+++ b/frontend/eslint.config.mjs
@@ -0,0 +1,14 @@
+import nextVitals from "eslint-config-next/core-web-vitals";
+import nextTypescript from "eslint-config-next/typescript";
+
+const eslintConfig = [
+ ...nextVitals,
+ ...nextTypescript,
+ {
+ rules: {
+ "react-hooks/set-state-in-effect": "off"
+ }
+ }
+];
+
+export default eslintConfig;