add: prettier eslint

This commit is contained in:
Tom Boullay
2026-04-30 13:36:07 +02:00
parent cfb1eaf39a
commit 5265cdc7e5
2 changed files with 146 additions and 0 deletions
+2
View File
@@ -2,6 +2,7 @@ import js from "@eslint/js";
import globals from "globals";
import reactHooks from "eslint-plugin-react-hooks";
import reactRefresh from "eslint-plugin-react-refresh";
import prettierRecommended from "eslint-plugin-prettier/recommended";
import tseslint from "typescript-eslint";
import { defineConfig, globalIgnores } from "eslint/config";
@@ -20,4 +21,5 @@ export default defineConfig([
globals: globals.browser,
},
},
prettierRecommended,
]);