Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
uses: ./.github/actions/setup

- name: Format & Lint
run: yarn fmt-and-lint:ci
run: yarn lint:ci

- name: Run type checks
run: yarn types
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,8 +73,8 @@ yarn test
Format and lint (Biome):

```bash
yarn fmt-and-lint
yarn fmt-and-lint:fix
yarn lint
yarn lint:fix
```

Clean generated artifacts:
Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@
"scripts": {
"build": "turbo run build --log-prefix=none",
"test": "turbo run test --log-prefix=none",
"fmt-and-lint": "biome check . --changed",
"fmt-and-lint:fix": "biome check . --changed --write",
"fmt-and-lint:ci": "biome ci . --changed --no-errors-on-unmatched",
"lint": "biome check .",
"lint:fix": "biome check . --write",
"lint:ci": "biome ci . --no-errors-on-unmatched",
"types": "turbo run types",
"clean": "turbo run clean"
},
Expand Down
6 changes: 3 additions & 3 deletions turbo.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,9 @@
"dependsOn": [],
"outputs": ["dist/**"]
},
"fmt-and-lint": {},
"fmt-and-lint:ci": {},
"fmt-and-lint:fix": {
"lint": {},
"lint:ci": {},
"lint:fix": {
"cache": false
},
"clean": {
Expand Down