Code Review

Repository coding standards for reviewing pull requests. Apply when reviewing TypeScript code.

bennycode 9d01cb6 811 B Updated

File contents

Code Review Standards

This repository's coding standards live in .claude/rules/. Read the rule files relevant to the changed code and enforce them during review.

Verify test quality with mutation testing

Every changed test must be able to fail. Flag assertions that would still pass if the change under review were reverted, and name the mutation that survives.

When a test's discriminating power is unclear, run Stryker on the file under test instead of guessing:

npx stryker run --mutate <file>

Surviving mutants in the changed code are test gaps. Please report each one with its file, line, and the mutation that survived.

bennycode/trading-signals/tree/main/.github/skills/code-review commit 9d01cb6681

Frequently asked questions

npx skillmds@latest add bennycode/code-review