Skip to content

Commit

Permalink
ci(lint): remove flaky tsc step temporarily
Browse files Browse the repository at this point in the history
  • Loading branch information
bradcush committed Aug 14, 2023
1 parent 0a9be76 commit 3ba8d64
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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`

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down

0 comments on commit 3ba8d64

Please sign in to comment.