From 1028adb8cf09e15872d161bc0f2927ad77ab2ac7 Mon Sep 17 00:00:00 2001 From: Joshua S Brown Date: Thu, 9 Jan 2025 14:55:44 -0500 Subject: [PATCH] Update eslint.config.js --- eslint.config.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/eslint.config.js b/eslint.config.js index 65f72647..f1f6d66e 100644 --- a/eslint.config.js +++ b/eslint.config.js @@ -3,14 +3,14 @@ const jsdocPlugin = require("eslint-plugin-jsdoc"); module.exports = [ { - ignores: ["docs/_static/**/*", "web/static/jquery/jquery.js"], + ignores: ["docs/_static/**/*", "web/static/jquery/jquery.js", "web/node_modules"], languageOptions: { globals: { ...globals.jquery, ...globals.node, }, }, - files: ["web/**/*.js", "web/**/*.ts", "core/**/*.js"], // Adjust file patterns as needed + files: ["web/**/*.js", "core/**/*.js"], // Adjust file patterns as needed plugins: { jsdoc: jsdocPlugin, },