Permalink
dependabot-action/.gitignore
Newer
100644
107 lines (77 sloc)
1.63 KB
1
# Updater output
2
output/output.json
4
tmp/
6
# Ignore optional native extensions for SSH
7
dist/*/build/Release/cpufeatures.node
8
dist/*/lib/protocol/crypto/build/Release/sshcrypto.node
9
10
# Dependency directory
11
node_modules
12
13
# Rest pulled from https://github.com/github/gitignore/blob/master/Node.gitignore
14
# Logs
15
logs
16
*.log
17
npm-debug.log*
18
yarn-debug.log*
19
yarn-error.log*
20
lerna-debug.log*
21
22
# Diagnostic reports (https://nodejs.org/api/report.html)
23
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
24
25
# Runtime data
26
pids
27
*.pid
28
*.seed
29
*.pid.lock
30
31
# Directory for instrumented libs generated by jscoverage/JSCover
32
lib-cov
33
34
# Coverage directory used by tools like istanbul
35
coverage
36
*.lcov
37
38
# nyc test coverage
39
.nyc_output
40
41
# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
42
.grunt
43
44
# Bower dependency directory (https://bower.io/)
45
bower_components
46
47
# node-waf configuration
48
.lock-wscript
49
50
# Compiled binary addons (https://nodejs.org/api/addons.html)
51
build/Release
52
53
# Dependency directories
54
jspm_packages/
55
56
# TypeScript v1 declaration files
57
typings/
58
59
# TypeScript cache
60
*.tsbuildinfo
61
62
# Optional npm cache directory
63
.npm
64
65
# Optional eslint cache
66
.eslintcache
67
68
# Optional REPL history
69
.node_repl_history
70
71
# Output of 'npm pack'
72
*.tgz
73
74
# Yarn Integrity file
75
.yarn-integrity
76
77
# dotenv environment variables file
78
.env
79
.env.test
80
81
# asdf tool version
82
.tool-versions
83
84
# parcel-bundler cache (https://parceljs.org/)
85
.cache
86
87
# next.js build output
88
.next
89
90
# nuxt.js build output
91
.nuxt
92
93
# vuepress build output
94
.vuepress/dist
95
96
# Serverless directories
97
.serverless/
98
99
# FuseBox cache
100
.fusebox/
101
102
# DynamoDB Local files
103
.dynamodb/
104
105
# OS metadata
106
.DS_Store
107
Thumbs.db