From 0991fe437b618237ab70320fabdd1c24392dd6fb Mon Sep 17 00:00:00 2001 From: Menefail Date: Tue, 27 Jan 2026 16:41:45 +0100 Subject: [PATCH] chore: add minimal eslint config MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Added a lightweight lint baseline that’s easy to expand later --- .eslintrc.json | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 .eslintrc.json diff --git a/.eslintrc.json b/.eslintrc.json new file mode 100644 index 00000000..1e665ad1 --- /dev/null +++ b/.eslintrc.json @@ -0,0 +1,6 @@ +{ + "root": true, + "env": { "es2021": true, "node": true }, + "extends": ["eslint:recommended"], + "parserOptions": { "ecmaVersion": 2021, "sourceType": "module" } +}