/ .gitignore
.gitignore
 1  *.dll
 2  *.so
 3  godot_proj/.godot
 4  # Node artifact files
 5  node_modules/
 6  dist/
 7  
 8  # Compiled Java class files
 9  *.class
10  
11  # Compiled Python bytecode
12  *.py[cod]
13  
14  # Log files
15  *.log
16  
17  # Package files
18  *.jar
19  
20  # Maven
21  target/
22  dist/
23  
24  # JetBrains IDE
25  .idea/
26  
27  # Unit test reports
28  TEST*.xml
29  
30  # Generated by MacOS
31  .DS_Store
32  
33  # Generated by Windows
34  Thumbs.db
35  
36  # Applications
37  *.app
38  *.exe
39  *.war
40  
41  # Large media files
42  *.mp4
43  *.tiff
44  *.avi
45  *.flv
46  *.mov
47  *.wmv