From 2be1ffd162330145016ed4dc3914847afe3beb05 Mon Sep 17 00:00:00 2001 From: Tobias Date: Tue, 6 Aug 2024 16:28:16 +0200 Subject: [PATCH] Update lint, type-check command to the same as other projects --- package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index bb2e5fd..c857cad 100644 --- a/package.json +++ b/package.json @@ -10,8 +10,8 @@ "preview": "astro preview", "astro": "astro", "fetchRegions": "vite-node ./data/fetchRegions.ts && prettier ./data/regions.json --write", - "type-check": "astro check && tsc --skipLibCheck", - "lint": "eslint --ignore-path .gitignore \"src/**/*.+(ts|js|tsx|astro|mdx)\"", + "type-check": "astro check && tsc --skipLibCheck --noEmit", + "lint": "eslint", "format": "prettier --ignore-path .gitignore \"src/**/*.+(ts|js|tsx|astro|mdx)\" --write", "check": "npm run type-check && npm run format && npm run lint", "updatePackages:major": "npx taze major --write && npm install",