맹주환

Update .gitignore

Showing 1 changed file with 137 additions and 0 deletions
1 +# Logs
2 +logs
3 +*.log
4 +npm-debug.log*
5 +yarn-debug.log*
6 +yarn-error.log*
7 +lerna-debug.log*
8 +.pnpm-debug.log*
9 +
10 +# Vscode
11 +.vscode/
12 +
13 +# Diagnostic reports (https://nodejs.org/api/report.html)
14 +report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
15 +
16 +# Runtime data
17 +pids
18 +*.pid
19 +*.seed
20 +*.pid.lock
21 +
22 +# Directory for instrumented libs generated by jscoverage/JSCover
23 +lib-cov
24 +
25 +# Coverage directory used by tools like istanbul
26 +coverage
27 +*.lcov
28 +
29 +# nyc test coverage
30 +.nyc_output
31 +
32 +# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
33 +.grunt
34 +
35 +# Bower dependency directory (https://bower.io/)
36 +bower_components
37 +
38 +# node-waf configuration
39 +.lock-wscript
40 +
41 +# Compiled binary addons (https://nodejs.org/api/addons.html)
42 +build/Release
43 +
44 +# Dependency directories
45 +client/node_modules/
46 +node_modules/
47 +jspm_packages/
48 +
49 +# Snowpack dependency directory (https://snowpack.dev/)
50 +web_modules/
51 +
52 +# TypeScript cache
53 +*.tsbuildinfo
54 +
55 +# Optional npm cache directory
56 +.npm
57 +
58 +# Optional eslint cache
59 +.eslintcache
60 +
61 +# Optional stylelint cache
62 +.stylelintcache
63 +
64 +# Microbundle cache
65 +.rpt2_cache/
66 +.rts2_cache_cjs/
67 +.rts2_cache_es/
68 +.rts2_cache_umd/
69 +
70 +# Optional REPL history
71 +.node_repl_history
72 +
73 +# Output of 'npm pack'
74 +*.tgz
75 +
76 +# Yarn Integrity file
77 +.yarn-integrity
78 +
79 +# dotenv environment variables file
80 +.env.development.local
81 +.env.test.local
82 +.env.production.local
83 +.env.local
84 +
85 +# parcel-bundler cache (https://parceljs.org/)
86 +.cache
87 +.parcel-cache
88 +
89 +# Next.js build output
90 +.next
91 +out
92 +
93 +# Nuxt.js build / generate output
94 +.nuxt
95 +dist
96 +
97 +# Gatsby files
98 +.cache/
99 +# Comment in the public line in if your project uses Gatsby and not Next.js
100 +# https://nextjs.org/blog/next-9-1#public-directory-support
101 +# public
102 +
103 +# vuepress build output
104 +.vuepress/dist
105 +
106 +# vuepress v2.x temp and cache directory
107 +.temp
108 +.cache
109 +
110 +# Serverless directories
111 +.serverless/
112 +
113 +# FuseBox cache
114 +.fusebox/
115 +
116 +# DynamoDB Local files
117 +.dynamodb/
118 +
119 +# TernJS port file
120 +.tern-port
121 +
122 +# Stores VSCode versions used for testing VSCode extensions
123 +.vscode-test
124 +
125 +# yarn v2
126 +.yarn/cache
127 +.yarn/unplugged
128 +.yarn/build-state.yml
129 +.yarn/install-state.gz
130 +.pnp.*
131 +package-lock.json.orig
132 +package-lock_BACKUP_15197.json
133 +package-lock_BASE_15197.json
134 +package-lock_LOCAL_15197.json
135 +package-lock_REMOTE_15197.json
136 +package.json.orig
137 +readme.md.orig