[READ-ONLY] Mirror of https://github.com/shuuji3/github-contribution-recorder. 馃摴 A tool to record GitHub activities (commits, issues, PRs, comments) into a local SQLite database.
2.4 kB
149 lines
1# project
2*.db
3config.ts
4records/
5
6# Created by https://www.toptal.com/developers/gitignore/api/node
7# Edit at https://www.toptal.com/developers/gitignore?templates=node
8
9### Node ###
10# Logs
11logs
12*.log
13npm-debug.log*
14yarn-debug.log*
15yarn-error.log*
16lerna-debug.log*
17.pnpm-debug.log*
18
19# Diagnostic reports (https://nodejs.org/api/report.html)
20report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
21
22# Runtime data
23pids
24*.pid
25*.seed
26*.pid.lock
27
28# Directory for instrumented libs generated by jscoverage/JSCover
29lib-cov
30
31# Coverage directory used by tools like istanbul
32coverage
33*.lcov
34
35# nyc test coverage
36.nyc_output
37
38# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
39.grunt
40
41# Bower dependency directory (https://bower.io/)
42bower_components
43
44# node-waf configuration
45.lock-wscript
46
47# Compiled binary addons (https://nodejs.org/api/addons.html)
48build/Release
49
50# Dependency directories
51node_modules/
52jspm_packages/
53
54# Snowpack dependency directory (https://snowpack.dev/)
55web_modules/
56
57# TypeScript cache
58*.tsbuildinfo
59
60# Optional npm cache directory
61.npm
62
63# Optional eslint cache
64.eslintcache
65
66# Optional stylelint cache
67.stylelintcache
68
69# Microbundle cache
70.rpt2_cache/
71.rts2_cache_cjs/
72.rts2_cache_es/
73.rts2_cache_umd/
74
75# Optional REPL history
76.node_repl_history
77
78# Output of 'npm pack'
79*.tgz
80
81# Yarn Integrity file
82.yarn-integrity
83
84# dotenv environment variable files
85.env
86.env.development.local
87.env.test.local
88.env.production.local
89.env.local
90
91# parcel-bundler cache (https://parceljs.org/)
92.cache
93.parcel-cache
94
95# Next.js build output
96.next
97out
98
99# Nuxt.js build / generate output
100.nuxt
101dist
102
103# Gatsby files
104.cache/
105# Comment in the public line in if your project uses Gatsby and not Next.js
106# https://nextjs.org/blog/next-9-1#public-directory-support
107# public
108
109# vuepress build output
110.vuepress/dist
111
112# vuepress v2.x temp and cache directory
113.temp
114
115# Docusaurus cache and generated files
116.docusaurus
117
118# Serverless directories
119.serverless/
120
121# FuseBox cache
122.fusebox/
123
124# DynamoDB Local files
125.dynamodb/
126
127# TernJS port file
128.tern-port
129
130# Stores VSCode versions used for testing VSCode extensions
131.vscode-test
132
133# yarn v2
134.yarn/cache
135.yarn/unplugged
136.yarn/build-state.yml
137.yarn/install-state.gz
138.pnp.*
139
140### Node Patch ###
141# Serverless Webpack directories
142.webpack/
143
144# Optional stylelint cache
145
146# SvelteKit build / generate output
147.svelte-kit
148
149# End of https://www.toptal.com/developers/gitignore/api/node