diff --git a/.github/workflows/checks.yml b/.github/workflows/checks.yml index e9eb238..e1176a9 100644 --- a/.github/workflows/checks.yml +++ b/.github/workflows/checks.yml @@ -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 diff --git a/README.md b/README.md index 309be9f..64b3e25 100644 --- a/README.md +++ b/README.md @@ -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: diff --git a/package.json b/package.json index 7850f19..349197f 100644 --- a/package.json +++ b/package.json @@ -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" }, diff --git a/turbo.json b/turbo.json index ccff1cd..74b3c39 100644 --- a/turbo.json +++ b/turbo.json @@ -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": {