-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitignore
112 lines (87 loc) · 1.34 KB
/
.gitignore
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
# Dependency directories
node_modules/
bower_components/
# Distribution directories
build/
dist/
# OS-specific files/directories
.DS_Store
Thumbs.db
# Editor-specific files/directories
.vscode/
.idea/
# Environment variables files
.env
.env.local
.env.*.local
.env.development.local
.env.test.local
.env.production.local
# Compiled output files
*.log
*.log*
npm-debug.log*
yarn-debug.log*
yarn-error.log*
# Dependency files
package-lock.json
yarn.lock
# IDE configuration files
*.iml
*.ipr
*.iws
# Webpack build files
/coverage/
# Build process directory
/.pnp/
.pnp.js
# Next.js build output
.next/
# Nuxt.js build output
.nuxt/
# Gatsby files
.cache/
# public/
# Serverless directories
.serverless/
# Storybook directory
.storybook-out/
# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
.grunt/
# Docker compose files
docker-compose.yml
docker-compose.override.yml
docker-compose.override.yaml
docker-compose.prod.yml
docker-compose.prod.yaml
# ESLint directory
.eslintcache/
# Puppeteer
.puppeteer/
# Test files
/coverage/
*.log
*.pid
*.seed
*.pid.lock
*.log
*.log.*
*.swp
# TypeScript
*.tsbuildinfo
*.js.map
# VS Code
.vscode/
# Yarn v2
.yarn/*
!.yarn/patches
!.yarn/releases
!.yarn/plugins
!.yarn/sdks
!.yarn/versions
!.pnp.*
# Pnpm
.pnpm-debug.log*
# Yarn Integrity file
.yarn-integrity
# End of file