30 lines
311 B
Markdown
30 lines
311 B
Markdown
---
|
|
name: gitignore
|
|
description: Anthony Fu's preferred .gitignore for JavaScript/TypeScript projects
|
|
---
|
|
|
|
# .gitignore
|
|
|
|
When `.gitignore` is not present, create it with:
|
|
|
|
```
|
|
*.log
|
|
*.tgz
|
|
.cache
|
|
.DS_Store
|
|
.eslintcache
|
|
.idea
|
|
.env
|
|
.nuxt
|
|
.temp
|
|
.output
|
|
.turbo
|
|
cache
|
|
coverage
|
|
dist
|
|
lib-cov
|
|
logs
|
|
node_modules
|
|
temp
|
|
```
|