summaryrefslogtreecommitdiff
path: root/frontend/eslint.config.mjs
diff options
context:
space:
mode:
authorTyler Hoang <tyler@tylerhoang.xyz>2026-05-17 12:46:13 -0700
committerTyler Hoang <tyler@tylerhoang.xyz>2026-05-17 12:46:13 -0700
commit1482422f2f5b236cdcdff4429ae06bb55dca4083 (patch)
tree4653cb4986a8a138f84dbec934effb0d011751d3 /frontend/eslint.config.mjs
Add stack start and stop scripts
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;