From 3998f0794b8944208ad88e6c8cdb8b4a644c2ce1 Mon Sep 17 00:00:00 2001 From: Tom Milewski Date: Wed, 18 Oct 2023 13:48:18 -0400 Subject: [PATCH] chore(repo): Update precommit call to eslint fix --- .lintstagedrc.json | 2 +- integration/package.json | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/.lintstagedrc.json b/.lintstagedrc.json index 652e81c30f..82f2e43383 100644 --- a/.lintstagedrc.json +++ b/.lintstagedrc.json @@ -1,4 +1,4 @@ { - "*.{js,jsx,ts,tsx}": ["npx prettier --write", "npx eslint --fix"], + "*.{js,jsx,ts,tsx}": ["npx prettier --write", "npm run lint:fix"], "*.{json,md,mdx}": ["npx prettier --write"] } diff --git a/integration/package.json b/integration/package.json index 2559f99ae9..1e3fcc4b3f 100644 --- a/integration/package.json +++ b/integration/package.json @@ -10,7 +10,6 @@ }, "license": "MIT", "scripts": { - "lint": "eslint .", "test:integration:base": "DEBUG=1 npx playwright test --config ./playwright.config.ts", "test:integration:deployment:nextjs": "DEBUG=1 npx playwright test --config ./playwright.deployments.config.ts", "test:integration:generic": "E2E_APP_ID=react.vite.* npm run test:integration:base -- --grep @generic",