Skip to content
Draft
Show file tree
Hide file tree
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
22 changes: 19 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,11 @@

# dependencies
/node_modules
node_modules
/.pnp
.pnp
.pnp.*
.pnp.js
.yarn/*
!.yarn/patches
!.yarn/plugins
Expand All @@ -12,13 +15,18 @@

# testing
/coverage
coverage

# next.js
/.next/
.next/
/out/
out/

# production
/build
build
dist

# misc
.DS_Store
Expand All @@ -32,18 +40,26 @@ yarn-error.log*

# env files (can opt-in for committing if needed)
.env*
.env
.env.local
.env.development.local
.env.test.local
.env.production.local

# vercel
.vercel

# typescript
*.tsbuildinfo
next-env.d.ts

# turbo
.turbo

# local utilities
.direnv
public/r

# local utilities for doc management
/scripts
type-usage-report.csv
type-usage-report.txt
*.csv
*.csv
File renamed without changes.
1 change: 1 addition & 0 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@
nodePackages.prettier
nodejs_22
nixpkgs-fmt
pnpm
];
};
}
Expand Down
Loading
Loading