@epic-web/config 1.18.1 → 1.18.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/eslint.js +2 -3
  2. package/package.json +1 -1
package/eslint.js CHANGED
@@ -21,7 +21,7 @@ const hasPlaywright = has('playwright')
21
21
 
22
22
  const vitestFiles = ['**/__tests__/**/*', '**/*.test.*', '**/*.spec.*']
23
23
  const testFiles = ['**/tests/**', '**/#tests/**', ...vitestFiles]
24
- const playwrightFiles = ['**/e2e/**']
24
+ const playwrightFiles = ['**/tests/e2e/**']
25
25
 
26
26
  export const config = [
27
27
  {
@@ -313,8 +313,7 @@ export const config = [
313
313
 
314
314
  hasPlaywright
315
315
  ? {
316
- files: ['**/tests/*.ts?(x)', '**/tests/*.js?(x)'],
317
- ignores: testFiles,
316
+ files: [...playwrightFiles],
318
317
  plugins: {
319
318
  playwright: (await import('eslint-plugin-playwright')).default,
320
319
  },
package/package.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
7
- "version": "1.18.1",
7
+ "version": "1.18.2",
8
8
  "description": "Reasonable ESLint configs for epic web devs",
9
9
  "main": "index.js",
10
10
  "type": "module",