92 lines
1013 B
Plaintext
92 lines
1013 B
Plaintext
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
|
|
|
|
# dependencies
|
|
/node_modules
|
|
**/node_modules
|
|
/.pnp
|
|
.pnp.js
|
|
|
|
# testing
|
|
/coverage
|
|
**/coverage
|
|
|
|
# next.js
|
|
/.next/
|
|
/out/
|
|
**/.next/
|
|
**/out/
|
|
|
|
# production
|
|
/build
|
|
**/build
|
|
**/dist
|
|
|
|
# misc
|
|
.DS_Store
|
|
**/.DS_Store
|
|
*.pem
|
|
Thumbs.db
|
|
|
|
# IDE - VSCode
|
|
.vscode/*
|
|
!.vscode/settings.json
|
|
!.vscode/tasks.json
|
|
!.vscode/launch.json
|
|
!.vscode/extensions.json
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
|
|
# debug
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
|
|
# local env files
|
|
.env*.local
|
|
.env
|
|
.env.local
|
|
.env.development.local
|
|
.env.test.local
|
|
.env.production.local
|
|
|
|
# vercel
|
|
.vercel
|
|
|
|
# typescript
|
|
*.tsbuildinfo
|
|
next-env.d.ts
|
|
|
|
# Go specific
|
|
# Binaries for programs and plugins
|
|
*.exe
|
|
*.exe~
|
|
*.dll
|
|
*.so
|
|
*.dylib
|
|
|
|
# Test binary, built with `go test -c`
|
|
*.test
|
|
|
|
# Output of the go coverage tool
|
|
*.out
|
|
*.prof
|
|
coverage.txt
|
|
|
|
# Go workspace file
|
|
go.work
|
|
go.work.sum
|
|
|
|
# Dependency directories
|
|
/vendor/
|
|
**/vendor/
|
|
|
|
# Go binary
|
|
/bin/
|
|
**/bin/
|
|
**/build/
|
|
**/dist/
|
|
|
|
# Go logs
|
|
**/logs/
|
|
*.log |