Skip to content

Commit 46d3e36

Browse files
committed
Added .gitignore
1 parent 67d5da6 commit 46d3e36

File tree

1 file changed

+47
-0
lines changed

1 file changed

+47
-0
lines changed

.gitignore

Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
# These are some examples of commonly ignored file patterns.
2+
# You should customize this list as applicable to your project.
3+
# Learn more about .gitignore:
4+
# https://www.atlassian.com/git/tutorials/saving-changes/gitignore
5+
6+
# Node artifact files
7+
node_modules/
8+
dist/
9+
10+
# Compiled Java class files
11+
*.class
12+
13+
# Compiled Python bytecode
14+
*.py[cod]
15+
16+
# Log files
17+
*.log
18+
19+
# Maven
20+
target/
21+
dist/
22+
23+
# JetBrains IDE
24+
.idea/
25+
26+
# Unit test reports
27+
TEST*.xml
28+
29+
# Generated by MacOS
30+
.DS_Store
31+
32+
# Generated by Windows
33+
Thumbs.db
34+
35+
# Applications
36+
*.app
37+
*.exe
38+
*.war
39+
40+
# Large media files
41+
*.mp4
42+
*.tiff
43+
*.avi
44+
*.flv
45+
*.mov
46+
*.wmv
47+

0 commit comments

Comments
 (0)