Skip to content

Commit

Permalink
fix(eslint): fix format of ignores
Browse files Browse the repository at this point in the history
  • Loading branch information
kentcdodds committed May 29, 2024
1 parent cfb4982 commit ea1ee2f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions eslint.js
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ export const config = [
hasTestingLibrary
? {
files: testFiles,
ignores: [playwrightFiles],
ignores: [...playwrightFiles],
plugins: {
'testing-library': (await import('eslint-plugin-testing-library'))
.default,
Expand All @@ -193,7 +193,7 @@ export const config = [
hasJestDom
? {
files: testFiles,
ignores: [playwrightFiles],
ignores: [...playwrightFiles],
plugins: {
'jest-dom': (await import('eslint-plugin-jest-dom')).default,
},
Expand All @@ -209,7 +209,7 @@ export const config = [
hasVitest
? {
files: testFiles,
ignores: [playwrightFiles],
ignores: [...playwrightFiles],
plugins: {
vitest: (await import('eslint-plugin-vitest')).default,
},
Expand Down

0 comments on commit ea1ee2f

Please sign in to comment.