package.json declares:
"lint": "eslint packages/*/src"
eslint is not in devDependencies, so this fails with command not found. CI runs typecheck, test and build, and deliberately skips lint for that reason.
Either add eslint with a config for a pnpm workspace, or remove the script. A declared script that cannot run reads as a quality gate that exists.
The same broken script is in feed-slurp, so whichever way this goes is worth applying to both.
package.jsondeclares:eslint is not in
devDependencies, so this fails withcommand not found. CI runs typecheck, test and build, and deliberately skips lint for that reason.Either add eslint with a config for a pnpm workspace, or remove the script. A declared script that cannot run reads as a quality gate that exists.
The same broken script is in
feed-slurp, so whichever way this goes is worth applying to both.