From 3ba8d64e4f1bb93e73b8583d5dbdfd65f4134e7a Mon Sep 17 00:00:00 2001 From: Bradley Cushing Date: Sun, 13 Aug 2023 21:08:52 -0400 Subject: [PATCH] ci(lint): remove flaky tsc step temporarily --- README.md | 8 ++++---- package.json | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 7685670..e1efcad 100644 --- a/README.md +++ b/README.md @@ -53,10 +53,10 @@ Unit testing: `bun test:unit` ## Linting -Linting using `tsc` and `eslint` is also automatically run as part of the -GitHub CI for both a commit push and pull request. It is also run locally -before committing using a pre-commit hook. There must be no errors for any pull -request to be merged into the main branch. +Linting using `eslint` is also automatically run as part of the GitHub CI for +both a commit push and pull request. It is also run locally before committing +using a pre-commit hook. There must be no errors for any pull request to be +merged into the main branch. Linting: `bun lint` diff --git a/package.json b/package.json index 7392d42..7c593d5 100644 --- a/package.json +++ b/package.json @@ -9,7 +9,7 @@ "scripts": { "build:dev": "bun meta:clean && bun meta:manifest && bun meta/dev.build.ts && bun meta:copy", "build:prod": "bun meta:clean && bun meta:manifest && bun meta/prod.build.ts && bun meta:copy", - "lint": "tsc --noEmit && eslint --ext .ts,.json .", + "lint": "eslint --ext .ts,.json .", "meta:clean": "rm -rf dist && rm -rf generated && mkdir generated", "meta:copy": "cp generated/* dist && mkdir -p dist/icons && cp src/icons/* dist/icons", "meta:manifest": "bun meta/manifest/run.ts --browser chromium > generated/manifest.json",