Skip to content

Commit 9289923

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 39d33ac commit 9289923

2 files changed

Lines changed: 13 additions & 13 deletions

File tree

bun.lock

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

packages/bun-queue/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,8 +57,8 @@
5757
"fresh": "bunx rimraf node_modules/ bun.lock && bun i",
5858
"prepublishOnly": "bun --bun run build && bun run compile:all && bun run zip",
5959
"test": "bun test",
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
"changelog": "bunx logsmith --verbose",
6363
"changelog:generate": "bunx logsmith --output CHANGELOG.md",
6464
"release": "bun --bun run changelog:generate && bunx --bun bumpx prompt --recursive",

0 commit comments

Comments
 (0)