diff --git a/apps/docs/package.json b/apps/docs/package.json index 41b527170b..b0d046e86d 100644 --- a/apps/docs/package.json +++ b/apps/docs/package.json @@ -8,7 +8,7 @@ "clean": "rm -rf .turbo && rm -rf node_modules && rm -rf .next", "dev": "PORT=4000 next", "lint": "next lint", - "lint:fix": "next lint . --ext .ts,.js,.tsx,.jsx --fix", + "lint:fix": "eslint . --ext .ts,.js,.tsx,.jsx --fix", "lint:report": "eslint . --format json --output-file ../../lint-results/docs.json", "start": "PORT=4000 next start", "type-check": "tsc --pretty --noEmit" diff --git a/apps/swagger/package.json b/apps/swagger/package.json index 42d112dc63..b42c46f1f6 100644 --- a/apps/swagger/package.json +++ b/apps/swagger/package.json @@ -7,7 +7,7 @@ "clean": "rm -rf .turbo && rm -rf node_modules && rm -rf .next", "dev": "PORT=4200 next dev", "lint": "next lint", - "lint:fix": "next lint . --ext .ts,.js,.tsx,.jsx --fix", + "lint:fix": "eslint . --ext .ts,.js,.tsx,.jsx --fix", "lint:report": "eslint . --format json --output-file ../../lint-results/swagger.json", "start": "PORT=4200 next start" }, diff --git a/apps/web/package.json b/apps/web/package.json index 06e9dc9a4d..791389c86e 100644 --- a/apps/web/package.json +++ b/apps/web/package.json @@ -17,7 +17,7 @@ "build": "next build", "start": "next start", "lint": "next lint", - "lint:fix": "next lint . --ext .ts,.js,.tsx,.jsx --fix", + "lint:fix": "eslint . --ext .ts,.js,.tsx,.jsx --fix", "lint:report": "eslint . --format json --output-file ../../lint-results/web.json", "check-changed-files": "ts-node scripts/ts-check-changed-files.ts" },