We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 452b45c commit aa11d8eCopy full SHA for aa11d8e
.gitignore
@@ -0,0 +1,57 @@
1
+# Do not track these files.
2
+
3
+# Node artifact files
4
+node_modules/
5
+dist/
6
7
+# Compiled Java class files
8
+*.class
9
10
+# Compiled Python bytecode
11
+*.py[cod]
12
+__pycache__
13
14
+# Log files
15
+log/
16
+*.log
17
18
+# Package files
19
+*.jar
20
+/*egg-info/
21
22
+# Maven
23
+target/
24
25
+# JetBrains IDE
26
+.idea/
27
+venv/
28
29
+# Visual Studio
30
+.vs*
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
54
+# Temporary files
55
+~$*.doc*
56
+~$*.xls*
57
+~$*.ppt*
0 commit comments