From 448e40e07ace6eaa87dda5544a01c47594d081ae Mon Sep 17 00:00:00 2001 From: Manuel Schiller Date: Wed, 2 Oct 2024 22:43:00 +0200 Subject: [PATCH] fix(eslint): ignore temporary vite config files (#167) * 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> --- packages/config/src/eslint/index.js | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/config/src/eslint/index.js b/packages/config/src/eslint/index.js index 8781bcb..cc7ce4b 100644 --- a/packages/config/src/eslint/index.js +++ b/packages/config/src/eslint/index.js @@ -18,6 +18,7 @@ const GLOB_EXCLUDE = [ '**/coverage/**', '**/dist/**', '**/snap/**', + '**/vite.config.*.timestamp-*.*', ] /** @type {import('eslint').Linter.Config[]} */