From 64af61c9bd61951826fd07610502ee4e4faa1662 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 5 Feb 2026 16:55:07 +0000 Subject: [PATCH 1/2] Initial plan From b9996a546cde14bbe4fc054ceb93e4bbcbd4199f Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 5 Feb 2026 16:57:05 +0000 Subject: [PATCH 2/2] Add ESLint rules to enforce semicolons and double-quotes Co-authored-by: yortch <4576246+yortch@users.noreply.github.com> --- frontend/eslint.config.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/frontend/eslint.config.js b/frontend/eslint.config.js index 092408a..fc784a5 100644 --- a/frontend/eslint.config.js +++ b/frontend/eslint.config.js @@ -23,6 +23,8 @@ export default tseslint.config( 'warn', { allowConstantExport: true }, ], + 'semi': ['error', 'always'], + 'quotes': ['error', 'double'], }, }, )