Skip to content

Commit

Permalink
Fix eslint ignore (#699)
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 authored Oct 12, 2024
1 parent 20caca9 commit d04cfdb
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 d04cfdb

Please sign in to comment.