This is optional, but it would be a huge quality of life improvement for anyone developing on Mac OS, as the first thing I do when starting a new project is always to add this to the .gitignore. Example: Just from the small changes I've made to the build script alone, I've generated 4 .DS_Store files, which would clutter up this PR if I included them.
		
			
				
	
	
		
			34 lines
		
	
	
		
			188 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			34 lines
		
	
	
		
			188 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
# gradle
 | 
						|
 | 
						|
.gradle/
 | 
						|
build/
 | 
						|
out/
 | 
						|
classes/
 | 
						|
 | 
						|
# eclipse
 | 
						|
 | 
						|
*.launch
 | 
						|
 | 
						|
# idea
 | 
						|
 | 
						|
.idea/
 | 
						|
*.iml
 | 
						|
*.ipr
 | 
						|
*.iws
 | 
						|
 | 
						|
# vscode
 | 
						|
 | 
						|
.settings/
 | 
						|
.vscode/
 | 
						|
bin/
 | 
						|
.classpath
 | 
						|
.project
 | 
						|
 | 
						|
# macos
 | 
						|
 | 
						|
*.DS_Store
 | 
						|
 | 
						|
# fabric
 | 
						|
 | 
						|
run/
 |