From f09d5ce203dbf819ee0e5f8c872ed821b2172fe0 Mon Sep 17 00:00:00 2001 From: Pihkaal Date: Thu, 13 Nov 2025 07:51:52 +0100 Subject: [PATCH] chore: eslint setup --- .gitignore | 3 + app/app.vue | 2 +- .../Home/BottomScreen/BottomScreen.vue | 2 - eslint.config.mjs | 8 + nuxt.config.ts | 1 + package.json | 8 +- pnpm-lock.yaml | 2348 ++++++++++++++++- pnpm-workspace.yaml | 1 + 8 files changed, 2320 insertions(+), 53 deletions(-) create mode 100644 eslint.config.mjs diff --git a/.gitignore b/.gitignore index 7a0e13c..586f87f 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,9 @@ # temporary __old +# ESlint +.eslintcache + # Nuxt dev/build outputs .output .data diff --git a/app/app.vue b/app/app.vue index ead96d6..8fc254f 100644 --- a/app/app.vue +++ b/app/app.vue @@ -11,7 +11,7 @@ const showStats = ref(false); }" >
- +
diff --git a/app/components/Home/BottomScreen/BottomScreen.vue b/app/components/Home/BottomScreen/BottomScreen.vue index 82ff8f0..1d8358b 100644 --- a/app/components/Home/BottomScreen/BottomScreen.vue +++ b/app/components/Home/BottomScreen/BottomScreen.vue @@ -1,8 +1,6 @@