Skip to content

Commit a7a8659

Browse files
chore: switch lint scripts from eslint to pickier
Per CLAUDE.md, pickier is the lint tool — not eslint. The lint / lint:fix scripts and the lint-staged glob still called bunx eslint, which pulled eslint from npm on every run. Swapped to bunx --bun pickier so local lint matches the documented tool. Refresh lockfile so the eslint package is no longer pinned.
1 parent 5ac21ff commit a7a8659

2 files changed

Lines changed: 15 additions & 15 deletions

File tree

bun.lock

Lines changed: 13 additions & 13 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/bumpx/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,8 +57,8 @@
5757
"zip:windows-x64": "zip -j bin/bumpx-windows-x64.zip bin/bumpx-windows-x64.exe",
5858
"zip:darwin-x64": "zip -j bin/bumpx-darwin-x64.zip bin/bumpx-darwin-x64",
5959
"zip:darwin-arm64": "zip -j bin/bumpx-darwin-arm64.zip bin/bumpx-darwin-arm64",
60-
"lint": "bunx --bun eslint .",
61-
"lint:fix": "bunx --bun eslint . --fix",
60+
"lint": "bunx --bun pickier .",
61+
"lint:fix": "bunx --bun pickier . --fix",
6262
"typecheck": "bunx tsc --noEmit",
6363
"prepublishOnly": "bun --bun run build && bun run compile:all && bun run zip",
6464
"test": "bun test"

0 commit comments

Comments
 (0)