From 8ddadbcbb2595ad0a68af637c83d7b6b82daa1e9 Mon Sep 17 00:00:00 2001 From: JoshuaSBrown Date: Thu, 2 Jan 2025 11:18:24 -0500 Subject: [PATCH] Remove randomly added custom global --- eslint.config.js | 5 ----- 1 file changed, 5 deletions(-) diff --git a/eslint.config.js b/eslint.config.js index 98a24c31a..5e50b0e91 100644 --- a/eslint.config.js +++ b/eslint.config.js @@ -1,14 +1,9 @@ const globals = require("globals"); -const customGlobals = { - TomSelect: "readable", -}; - module.exports = [{ languageOptions: { globals: { - ...customGlobals, ...globals.jquery, ...globals.node, },