diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index a6020c3..18d19a5 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -17,7 +17,7 @@ jobs: - uses: ./.github/actions/pnpm - name: Run oxlint - run: npx oxlint --config=oxlint.json --tsconfig=tsconfig.json + run: npx oxlint --tsconfig=tsconfig.json - name: Run eslint run: npx eslint --flag unstable_ts_config diff --git a/oxlint.json b/.oxlintrc.json similarity index 100% rename from oxlint.json rename to .oxlintrc.json diff --git a/package.json b/package.json index bce34e6..b0ff09c 100644 --- a/package.json +++ b/package.json @@ -41,7 +41,7 @@ "generate": "node --import @oxc-node/core/register ./scripts/generate.ts", "clone": "node --import @oxc-node/core/register ./scripts/sparse-clone.ts", "build": "vite build", - "lint": "npx oxlint --config=oxlint.json --tsconfig=tsconfig.json && npx eslint --flag unstable_ts_config", + "lint": "npx oxlint --tsconfig=tsconfig.json && npx eslint --flag unstable_ts_config", "format": "npx prettier --write .", "test": "vitest --reporter=verbose" },