Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions DEVELOP.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
## Enforce minimum npm package age
Please run this before doing TypeScript work or running tests in our repo:
```bash
pnpm config set --global minimumReleaseAge 1440
```
This will close most of the surface area for npm supply chain attacks.

## Install Git hooks
Please run:
```bash
git-hooks/install-hooks.sh
```
**Note that this removes everything in `.git/hooks`, and doesn't work if you're in a submodule**.

This will install our git hooks, for instance running formatting on commit.
Loading