From 6f8af9028b8d16e9c307bccc4a239ea14d5c9a7d Mon Sep 17 00:00:00 2001 From: AramJonghu Date: Sat, 16 May 2026 00:35:18 +0200 Subject: [PATCH] added eslint config --- .eslintrc.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .eslintrc.json diff --git a/.eslintrc.json b/.eslintrc.json new file mode 100644 index 0000000..9fda3ef --- /dev/null +++ b/.eslintrc.json @@ -0,0 +1,13 @@ +{ + "env": { + "browser": true, + "es2021": true + }, + "parserOptions": { + "ecmaVersion": 2021, + "sourceType": "module" + }, + "extends": [ + "eslint:recommended" + ] +}