-
Notifications
You must be signed in to change notification settings - Fork 1
/
.gitignore
113 lines (85 loc) · 1.21 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
113
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
# dependencies
/node_modules
/.pnp
.pnp.js
# testing
/coverage
# production
/build
# misc
.DS_Store
.env
.env.local
.env.development.local
.env.test.local
.env.production.local
npm-debug.log*
yarn-debug.log*
yarn-error.log*
package-lock.json
# parcel-bundler
.cache
.parcel-cache
# next.js
.next
out
# nuxt.js
.nuxt
dist
# vuepress
.vuepress/dist
# Serverless directories
.serverless
# FuseBox
.fusebox
# SvelteKit
.svelte-kit
# Gatsby files
.cache/
public/
# Comment this out if you have a build or output dir in root (used by e.g. Nuxt)
/dist
# Storybook files
.out
storybook-static
# Python
__pycache__/
# Azure Build artifacts
*.pdb
*.log
*.xml
*.lock
*.pyc
*.mypy_cache/
# local env files
.local
# output of 'npm pack'
*.tgz
# Yarn Integrity file
.yarn-integrity
# dotenv environment variables file
.env
# parcel-bundler cache (https://parceljs.org/)
.cache
.parcel-cache
# nyc test coverage
.nyc_output
# Sapper files
__sapper__/
__sapper__/**
# Gridsome cache
.cache/
.gridsome/
# static export
out/
# Generated files
.svelte-kit
public/build/
# Uncomment if using # IDEs
.idea/
.vscode/
*.suo
*.ntvs*
*.njsproj
*.sln