Skip to content

Commit 7ac95f0

Browse files
committed
v0.1.1
1 parent dad4412 commit 7ac95f0

File tree

2 files changed

+54
-1
lines changed

2 files changed

+54
-1
lines changed

.gitignore

Lines changed: 53 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
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+
build/
10+
fakeroot/
11+
bin/
12+
13+
# Compiled Java class files
14+
*.class
15+
16+
# Compiled Python bytecode
17+
*.py[cod]
18+
19+
# Log files
20+
*.log
21+
22+
# Package files
23+
*.jar
24+
25+
# Maven
26+
target/
27+
dist/
28+
29+
# JetBrains IDE
30+
.idea/
31+
32+
# Unit test reports
33+
TEST*.xml
34+
35+
# Generated by MacOS
36+
.DS_Store
37+
38+
# Generated by Windows
39+
Thumbs.db
40+
41+
# Applications
42+
*.app
43+
*.exe
44+
*.war
45+
46+
# Large media files
47+
*.mp4
48+
*.tiff
49+
*.avi
50+
*.flv
51+
*.mov
52+
*.wmv
53+

0 commit comments

Comments
 (0)