aboutsummaryrefslogtreecommitdiff
path: root/src/frontend/eslint.config.js
diff options
context:
space:
mode:
authorAriel Costas Guerrero <ariel@costas.dev>2025-11-08 18:57:58 +0100
committerAriel Costas Guerrero <ariel@costas.dev>2025-11-08 18:57:58 +0100
commitf33e81d6fd2975d235313e4ee0d490d25be19cd2 (patch)
tree87723fdda83b49876752df2ee7a4c6c617a1d614 /src/frontend/eslint.config.js
parentf4ea04764cf8748a1a7452363df42d2f2264e984 (diff)
Fix scrolling on mobile finally!
Diffstat (limited to 'src/frontend/eslint.config.js')
-rw-r--r--src/frontend/eslint.config.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/frontend/eslint.config.js b/src/frontend/eslint.config.js
index 2439911..9414644 100644
--- a/src/frontend/eslint.config.js
+++ b/src/frontend/eslint.config.js
@@ -1,13 +1,13 @@
import js from "@eslint/js";
-import globals from "globals";
import reactHooks from "eslint-plugin-react-hooks";
import reactRefresh from "eslint-plugin-react-refresh";
+import globals from "globals";
import tseslint from "typescript-eslint";
export default tseslint.config(
{ ignores: ["dist", "build", ".react-router", "node_modules"] },
{
- extends: [js.configs.recommended, ...tseslint.configs.recommended],
+ extends: [js.configs.recommended],
files: ["**/*.{ts,tsx}"],
languageOptions: {
ecmaVersion: 2020,