From ed2b4f23a26576aa81bf4bbddd76b91a51b86462 Mon Sep 17 00:00:00 2001 From: phette23 Date: Mon, 10 Feb 2025 13:31:14 -0800 Subject: [PATCH] fix: eslint ignore .venv dir --- eslint.config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eslint.config.js b/eslint.config.js index 8f204596..9f35a2d7 100644 --- a/eslint.config.js +++ b/eslint.config.js @@ -5,7 +5,7 @@ module.exports = [ js.configs.recommended, // "global" ignores must be alone in a config object // https://eslint.org/docs/latest/use/configure/configuration-files#globally-ignoring-files-with-ignores - {ignores: ["**/*.min.js"]}, + {ignores: ["**/*.min.js", ".venv/**"]}, // client-side js for the website { files: ["libraries/**/*.js"],