Skip to content

Commit 4764602

Browse files
committed
update .gitignore with relevant directives
1 parent 292b215 commit 4764602

File tree

1 file changed

+80
-0
lines changed

1 file changed

+80
-0
lines changed

.gitignore

+80
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,80 @@
1+
# ##############################################################################
2+
# GENERIC FILES TO IGNORE
3+
# ##############################################################################
4+
5+
# ------------------------------------------------------------------------------
6+
# Linux
7+
# ------------------------------------------------------------------------------
8+
*~
9+
.Trash-*
10+
11+
# ------------------------------------------------------------------------------
12+
# OSX
13+
# ------------------------------------------------------------------------------
14+
*.DS_Store
15+
._*
16+
17+
# ------------------------------------------------------------------------------
18+
# Windows
19+
# ------------------------------------------------------------------------------
20+
Desktop.ini
21+
Thumbs.db
22+
23+
# ------------------------------------------------------------------------------
24+
# SVN
25+
# ------------------------------------------------------------------------------
26+
.svn/
27+
28+
# ------------------------------------------------------------------------------
29+
# Log files and databases
30+
# ------------------------------------------------------------------------------
31+
*.log
32+
*.sql
33+
*.sqlite
34+
35+
# ------------------------------------------------------------------------------
36+
# CSS pre-processors
37+
# ------------------------------------------------------------------------------
38+
*.sass-cache*
39+
40+
# ------------------------------------------------------------------------------
41+
# Packages such as Zip files
42+
# ------------------------------------------------------------------------------
43+
*.7z
44+
*.dmg
45+
*.gz
46+
*.iso
47+
*.rar
48+
*.tar
49+
*.zip
50+
51+
# ------------------------------------------------------------------------------
52+
# Node
53+
# ------------------------------------------------------------------------------
54+
55+
# generic node ignores
56+
node_modules
57+
/dist
58+
/build
59+
60+
# testing and coverage related
61+
coverage
62+
.nyc_output
63+
64+
# locks
65+
package-lock.json
66+
yarn.lock
67+
68+
# file containing environment variables such as secret api keys
69+
# used in conjunction with dotenv package
70+
*.env
71+
72+
# ------------------------------------------------------------------------------
73+
# Misc
74+
# ------------------------------------------------------------------------------
75+
76+
# ignore any file or folder that starts with double underscore
77+
__*
78+
79+
# ide
80+
.idea

0 commit comments

Comments
 (0)