Skip to content

Commit b3f1b8e

Browse files
authored
feat: configure gitignores for NodeJS, IDE, sys... (EbookFoundation#6674)
For more infor see vscode addon: https://marketplace.visualstudio.com/items?itemName=codezombiech.gitignore
1 parent 6ac3f6f commit b3f1b8e

File tree

1 file changed

+292
-0
lines changed

1 file changed

+292
-0
lines changed

.gitignore

+292
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,292 @@
1+
# #########################################################
2+
# Global/Backup.gitignore
3+
# #####################################
4+
5+
*.bak
6+
*.gho
7+
*.ori
8+
*.orig
9+
*.tmp
10+
11+
12+
# #########################################################
13+
# Global/Diff.gitignore
14+
# #####################################
15+
16+
*.patch
17+
*.diff
18+
19+
20+
# #########################################################
21+
# Global/CVS.gitignore
22+
# #####################################
23+
24+
/CVS/*
25+
**/CVS/*
26+
.cvsignore
27+
*/.cvsignore
28+
29+
30+
# #########################################################
31+
# Global/SVN.gitignore
32+
# #####################################
33+
34+
.svn/
35+
36+
37+
# #########################################################
38+
# Global/TortoiseGit.gitignore
39+
# #####################################
40+
41+
# Project-level settings
42+
/.tgitconfig
43+
44+
45+
# #########################################################
46+
# Global/Linux.gitignore
47+
# #####################################
48+
49+
*~
50+
51+
# temporary files which can be created if a process still has a handle open of a deleted file
52+
.fuse_hidden*
53+
54+
# KDE directory preferences
55+
.directory
56+
57+
# Linux trash folder which might appear on any partition or disk
58+
.Trash-*
59+
60+
# .nfs files are created when an open file is removed but is still being accessed
61+
.nfs*
62+
63+
64+
# #########################################################
65+
# Global/macOS.gitignore
66+
# #####################################
67+
68+
# General
69+
.DS_Store
70+
.AppleDouble
71+
.LSOverride
72+
73+
# Icon must end with two \r
74+
Icon
75+
76+
# Thumbnails
77+
._*
78+
79+
# Files that might appear in the root of a volume
80+
.DocumentRevisions-V100
81+
.fseventsd
82+
.Spotlight-V100
83+
.TemporaryItems
84+
.Trashes
85+
.VolumeIcon.icns
86+
.com.apple.timemachine.donotpresent
87+
88+
# Directories potentially created on remote AFP share
89+
.AppleDB
90+
.AppleDesktop
91+
Network Trash Folder
92+
Temporary Items
93+
.apdisk
94+
95+
96+
# #########################################################
97+
# Global/Windows.gitignore
98+
# #####################################
99+
100+
# Windows thumbnail cache files
101+
Thumbs.db
102+
Thumbs.db:encryptable
103+
ehthumbs.db
104+
ehthumbs_vista.db
105+
106+
# Dump file
107+
*.stackdump
108+
109+
# Folder config file
110+
[Dd]esktop.ini
111+
112+
# Recycle Bin used on file shares
113+
$RECYCLE.BIN/
114+
115+
# Windows Installer files
116+
*.cab
117+
*.msi
118+
*.msix
119+
*.msm
120+
*.msp
121+
122+
# Windows shortcuts
123+
*.lnk
124+
125+
126+
# #########################################################
127+
# Global/VisualStudioCode.gitignore
128+
# #####################################
129+
130+
.vscode/*
131+
!.vscode/settings.json
132+
!.vscode/tasks.json
133+
!.vscode/launch.json
134+
!.vscode/extensions.json
135+
*.code-workspace
136+
137+
# Local History for Visual Studio Code
138+
.history/
139+
140+
141+
# #########################################################
142+
# Global/Vim.gitignore
143+
# #####################################
144+
145+
# Swap
146+
[._]*.s[a-v][a-z]
147+
!*.svg # comment out if you don't need vector files
148+
[._]*.sw[a-p]
149+
[._]s[a-rt-v][a-z]
150+
[._]ss[a-gi-z]
151+
[._]sw[a-p]
152+
153+
# Session
154+
Session.vim
155+
Sessionx.vim
156+
157+
# Temporary
158+
.netrwhist
159+
*~
160+
# Auto-generated tag files
161+
tags
162+
# Persistent undo
163+
[._]*.un~
164+
165+
166+
# #########################################################
167+
# Node.gitignore
168+
# ##################
169+
170+
# Logs
171+
logs
172+
*.log
173+
npm-debug.log*
174+
yarn-debug.log*
175+
yarn-error.log*
176+
lerna-debug.log*
177+
.pnpm-debug.log*
178+
179+
# Diagnostic reports (https://nodejs.org/api/report.html)
180+
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
181+
182+
# Runtime data
183+
pids
184+
*.pid
185+
*.seed
186+
*.pid.lock
187+
188+
# Directory for instrumented libs generated by jscoverage/JSCover
189+
lib-cov
190+
191+
# Coverage directory used by tools like istanbul
192+
coverage
193+
*.lcov
194+
195+
# nyc test coverage
196+
.nyc_output
197+
198+
# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
199+
.grunt
200+
201+
# Bower dependency directory (https://bower.io/)
202+
bower_components
203+
204+
# node-waf configuration
205+
.lock-wscript
206+
207+
# Compiled binary addons (https://nodejs.org/api/addons.html)
208+
build/Release
209+
210+
# Dependency directories
211+
node_modules/
212+
jspm_packages/
213+
214+
# Snowpack dependency directory (https://snowpack.dev/)
215+
web_modules/
216+
217+
# TypeScript cache
218+
*.tsbuildinfo
219+
220+
# Optional npm cache directory
221+
.npm
222+
223+
# Optional eslint cache
224+
.eslintcache
225+
226+
# Microbundle cache
227+
.rpt2_cache/
228+
.rts2_cache_cjs/
229+
.rts2_cache_es/
230+
.rts2_cache_umd/
231+
232+
# Optional REPL history
233+
.node_repl_history
234+
235+
# Output of 'npm pack'
236+
*.tgz
237+
238+
# Yarn Integrity file
239+
.yarn-integrity
240+
241+
# dotenv environment variables file
242+
.env
243+
.env.test
244+
.env.production
245+
246+
# parcel-bundler cache (https://parceljs.org/)
247+
.cache
248+
.parcel-cache
249+
250+
# Next.js build output
251+
.next
252+
out
253+
254+
# Nuxt.js build / generate output
255+
.nuxt
256+
dist
257+
258+
# Gatsby files
259+
.cache/
260+
# Comment in the public line in if your project uses Gatsby and not Next.js
261+
# https://nextjs.org/blog/next-9-1#public-directory-support
262+
# public
263+
264+
# vuepress build output
265+
.vuepress/dist
266+
267+
# Serverless directories
268+
.serverless/
269+
270+
# FuseBox cache
271+
.fusebox/
272+
273+
# DynamoDB Local files
274+
.dynamodb/
275+
276+
# TernJS port file
277+
.tern-port
278+
279+
# Stores VSCode versions used for testing VSCode extensions
280+
.vscode-test
281+
282+
# yarn v2
283+
.yarn/cache
284+
.yarn/unplugged
285+
.yarn/build-state.yml
286+
.yarn/install-state.gz
287+
.pnp.*
288+
289+
290+
# #########################################################
291+
# User Custom
292+
# ########

0 commit comments

Comments
 (0)