mirror of
https://github.com/github/gitignore
synced 2024-12-12 13:16:24 +01:00
21925162ce
The original ignore was far too general and results in eliminating packages named "db" or "project", for example. These are not that uncommon for package names. Also added a lot of other common, Playframework project related ignore patterns (Scala/Java/sbt/Eclipse).
44 lines
454 B
Plaintext
44 lines
454 B
Plaintext
# General Java / Scala ignore
|
|
*.class
|
|
*.log
|
|
|
|
|
|
# eclipse ignores
|
|
.project
|
|
.metadata
|
|
.classpath
|
|
*.tmp
|
|
*.bak
|
|
*.swp
|
|
.settings/
|
|
|
|
# Locally stored "Eclipse launch configurations"
|
|
*.launch
|
|
|
|
# Ignore Play! working directory #
|
|
/db
|
|
.eclipse
|
|
/lib/
|
|
/logs/
|
|
/modules
|
|
precompiled
|
|
/project/project
|
|
/project/target
|
|
/target
|
|
tmp/**
|
|
tmp/**/*
|
|
test-result
|
|
server.pid
|
|
*.iml
|
|
*.eml
|
|
/dist/
|
|
.cache
|
|
|
|
# sbt ignore
|
|
.history/
|
|
.lib/
|
|
|
|
# Scala-IDE specific
|
|
.scala_dependencies
|
|
.worksheet
|