From b44b7a1839967beb2af8bb774182f8947222f65d Mon Sep 17 00:00:00 2001 From: megascatterbomb Date: Thu, 21 Mar 2024 16:47:29 +1300 Subject: [PATCH] updated lint scripts to match github actions --- package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 9cc6de6..537fc8e 100644 --- a/package.json +++ b/package.json @@ -12,8 +12,8 @@ }, "scripts": { "start": "webpack serve", - "lint": "pnpm exec eslint . && pnpm exec prettier -c \"src/**/*\"", - "lint:fix": "pnpm exec eslint --fix . && pnpm exec prettier --write \"src/**/*\"", + "lint": "pnpm exec eslint .", + "lint:fix": "pnpm exec eslint --fix .", "build": "pnpm run lint && tailwind -i ./src/index.css -o ./src/tailwind.css && webpack --mode production", "dev": "concurrently -k \"webpack serve --mode development\" \"tailwindcss -i ./src/index.css -o ./src/tailwind.css --watch\" \"tsc -w\"", "prod": "concurrently -k \"webpack serve --mode production\" \"tailwindcss -i ./src/index.css -o ./src/tailwind.css --watch\" \"tsc -w\""