From cf296704b010a3d51c54347bb3b1453f02f49402 Mon Sep 17 00:00:00 2001 From: Andreas Troelsen Date: Sun, 8 Nov 2020 19:27:22 +0100 Subject: [PATCH] Clean up .gitignore. This file has an interesting history with content that goes all the way back to MobArena's dark days of both Ant and Eclipse. This commit cleans up the file a bit, removing a lot of unnecessary bits and pieces, and making it a little more tightly bound to the current project setup. --- .gitignore | 44 +++++++++----------------------------------- 1 file changed, 9 insertions(+), 35 deletions(-) diff --git a/.gitignore b/.gitignore index 516888a..3dacf8b 100644 --- a/.gitignore +++ b/.gitignore @@ -1,40 +1,14 @@ -# IDE files and folders -.project -.classpath -*.iml -.idea/ -.settings/ - -# Compiled files +# Java *.class -# OS files. -.DS_Store* -Thumbs.db - -# Misc folders -bin/ -build/ -misc/ +# Maven target/ -# Misc files -MobArena.jar -build.properties +# Artifacts +*.jar +*.zip -# Virtualenv (for docs) -# http://iamzed.com/2009/05/07/a-primer-on-virtualenv/ -.Python -[Bb]in -[Ii]nclude -[Ll]ib/python*/ -[Ll]ib64 -[Ll]ocal -[Mm]an -[Ss]cripts -pyvenv.cfg -.venv -pip-selfcheck.json - -# ReadTheDocs generated documentation -docs/_build +# IntelliJ +.idea/ +*.iml +out/