Skip to content

Commit

Permalink
Merge pull request #75 from satyam-seth/disable-eslint-import-no-extr…
Browse files Browse the repository at this point in the history
…aneous-dependencies

disable eslint import/no-extraneous-dependencies
  • Loading branch information
satyam-seth authored Dec 17, 2023
2 parents 3f80e79 + 7e5177e commit 42be05e
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 2 deletions.
1 change: 1 addition & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
"rules": {
"import/extensions": 0,
"import/no-unresolved": 0,
"import/no-extraneous-dependencies": 0,
"prettier/prettier": "warn",
"@typescript-eslint/no-shadow": "warn"
}
Expand Down
1 change: 0 additions & 1 deletion e2e/example.spec.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
/* eslint-disable import/no-extraneous-dependencies */
import { expect, test } from '@playwright/test';

test('has title', async ({ page }) => {
Expand Down
1 change: 0 additions & 1 deletion playwright.config.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
// eslint-disable-next-line import/no-extraneous-dependencies
import { defineConfig, devices } from '@playwright/test';

/**
Expand Down

0 comments on commit 42be05e

Please sign in to comment.