From f98f7e6a34f02e8d6ea6673fbe68ab6db28a2e89 Mon Sep 17 00:00:00 2001 From: Andrew Lee Date: Sun, 2 Mar 2025 11:49:28 -0500 Subject: Added the fundementials of the bot --- bot/eslint.config.js | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 bot/eslint.config.js (limited to 'bot/eslint.config.js') diff --git a/bot/eslint.config.js b/bot/eslint.config.js new file mode 100644 index 0000000..e67ce26 --- /dev/null +++ b/bot/eslint.config.js @@ -0,0 +1,15 @@ +import globals from "globals"; +import pluginJs from "@eslint/js"; + + +/** @type {import('eslint').Linter.Config[]} */ +export default [ + { + languageOptions: { + ecmaVersion: "latest", + sourceType: "module", + globals: globals.node + } + }, + pluginJs.configs.recommended, +]; -- cgit v1.2.3