We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
0 parents commit fddaf06Copy full SHA for fddaf06
.gitignore
@@ -0,0 +1,50 @@
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
+# Package files
20
+*.jar
21
22
+# Maven
23
+target/
24
25
26
+# JetBrains IDE
27
+.idea/
28
29
+# Unit test reports
30
+TEST*.xml
31
32
+# Generated by MacOS
33
+.DS_Store
34
35
+# Generated by Windows
36
+Thumbs.db
37
38
+# Applications
39
+*.app
40
+*.exe
41
+*.war
42
43
+# Large media files
44
+*.mp4
45
+*.tiff
46
+*.avi
47
+*.flv
48
+*.mov
49
+*.wmv
50
0 commit comments