Skip to content

Commit

Permalink
fix(eslint): ignore temporary vite config files (#167)
Browse files Browse the repository at this point in the history
* fix:ignore temporary vite config files

otherwise eslint might trip over such temp file like this:

Error: ENOENT: no such file or directory, open '/home/workflows/workspace/packages/react-router/vite.config.ts.timestamp-1727808513722-641dfc845ba89.mjs'

* ci: apply automated fixes

---------

Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
  • Loading branch information
schiller-manuel and autofix-ci[bot] authored Oct 2, 2024
1 parent 5c72007 commit 448e40e
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions packages/config/src/eslint/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ const GLOB_EXCLUDE = [
'**/coverage/**',
'**/dist/**',
'**/snap/**',
'**/vite.config.*.timestamp-*.*',
]

/** @type {import('eslint').Linter.Config[]} */
Expand Down

0 comments on commit 448e40e

Please sign in to comment.