From 80500ebaf09194941711b2a032db82d21015e5eb Mon Sep 17 00:00:00 2001 From: zomars Date: Wed, 13 Jul 2022 15:13:24 -0600 Subject: [PATCH] Fixes lint:fix script --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 1ff0ad35b9..0b4f085b37 100644 --- a/package.json +++ b/package.json @@ -12,7 +12,7 @@ "dev": "PORT=3002 next dev", "lint": "next lint", "lint:report": "eslint . --format json --output-file ../../lint-results/api.json", - "lint:fix": "next lint . --ext .ts,.js,.tsx,.jsx --fix", + "lint:fix": "eslint . --ext .ts,.js,.tsx,.jsx --fix", "start": "PORT=3002 next start", "test": "jest --detectOpenHandles --passWithNoTests", "type-check": "tsc --pretty --noEmit"