Skip to content

Commit

Permalink
fix: eslint ignore .venv dir
Browse files Browse the repository at this point in the history
  • Loading branch information
phette23 committed Feb 10, 2025
1 parent 5c39528 commit ed2b4f2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion eslint.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -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"],
Expand Down

0 comments on commit ed2b4f2

Please sign in to comment.