Skip to content

Commit

Permalink
fix: resolve missing dependency errors caused by test files
Browse files Browse the repository at this point in the history
  • Loading branch information
alexgavrusev committed May 18, 2024
1 parent 6b45d6c commit 8dc04c4
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,12 @@
"@nx/dependency-checks": [
"error",
{
"ignoredFiles": ["{projectRoot}/vite.config.{js,ts,mjs,mts}"],
"ignoredFiles": [
"{projectRoot}/vite.config.{js,ts,mjs,mts}",
"{projectRoot}/vitest.config.*.{js,ts,mjs,mts}",
"{projectRoot}/**/*.spec.ts",
"{projectRoot}/**/*.e2e-spec.ts"
],
"ignoredDependencies": ["@swc/helpers"]
}
]
Expand Down

0 comments on commit 8dc04c4

Please sign in to comment.