Skip to content

Commit

Permalink
Fix eslint ignore
Browse files Browse the repository at this point in the history
some ignores were in .eslintignore which is deprecated. When
eslint.config.js was added, they stopped being used. Add all entries
from .eslintignore into eslint.config.js
  • Loading branch information
sciencewhiz committed Oct 4, 2024
1 parent faca0b4 commit 290d614
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 7 deletions.
6 changes: 0 additions & 6 deletions vscode-wpilib/.eslintignore

This file was deleted.

2 changes: 1 addition & 1 deletion vscode-wpilib/eslint.config.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// eslint.config.js
module.exports =
{
ignores: ["media/", "out/", "resources/"]
ignores: ["media/", "out/", "resources/", ".eslintrc.js", "webpack.config.js", "gulpfile.js", "dist"]
};

0 comments on commit 290d614

Please sign in to comment.