Skip to content

Commit

Permalink
Remove turbo for linting (#640)
Browse files Browse the repository at this point in the history
Instead, run ESLint using the command `eslint .` from the project root.
This lints the entire repo using the proper configuration, just like for
example editor integrations do.

Co-authored-by: Merlijn Vos <[email protected]>
  • Loading branch information
remcohaszing and Murderlon authored Aug 1, 2024
1 parent dc49198 commit 24f82ef
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
"demo": "npm run --workspace demo start",
"demo:gcs": "npm run --workspace demo start:gcs",
"demo:s3": "npm run --workspace demo start:s3",
"lint": "turbo run lint",
"format": "turbo run format",
"lint": "eslint .",
"format": "eslint --fix .",
"pretest": "tsc --build",
"test": "turbo run test",
"version": "changeset version",
Expand Down

0 comments on commit 24f82ef

Please sign in to comment.