kristofer revised this gist . Go to revision
1 file changed, 43 insertions
javapy.gitignore(file created)
| @@ -0,0 +1,43 @@ | |||
| 1 | + | # Java | |
| 2 | + | *.class | |
| 3 | + | *.jar | |
| 4 | + | *.war | |
| 5 | + | *.ear | |
| 6 | + | *.zip | |
| 7 | + | *.iml | |
| 8 | + | *.ipr | |
| 9 | + | *.iws | |
| 10 | + | .settings/ | |
| 11 | + | bin/ | |
| 12 | + | target/ | |
| 13 | + | out/ | |
| 14 | + | .classpath | |
| 15 | + | .project | |
| 16 | + | .idea/ | |
| 17 | + | ||
| 18 | + | # Python | |
| 19 | + | *.pyc | |
| 20 | + | *.pyo | |
| 21 | + | __pycache__/ | |
| 22 | + | *.egg-info | |
| 23 | + | *.env | |
| 24 | + | .venv/ | |
| 25 | + | venv/ | |
| 26 | + | *.log | |
| 27 | + | *.swp | |
| 28 | + | *.swo | |
| 29 | + | *.sqlite | |
| 30 | + | *.sqlite3 | |
| 31 | + | *.db | |
| 32 | + | *.lock | |
| 33 | + | .pytest_cache | |
| 34 | + | ||
| 35 | + | # OS and IDE specific | |
| 36 | + | .DS_Store | |
| 37 | + | Thumbs.db | |
| 38 | + | *.bak | |
| 39 | + | *.tmp | |
| 40 | + | *.orig | |
| 41 | + | *.patch | |
| 42 | + | *.py~ | |
| 43 | + | *.java~ | |
Newer
Older