diff options
author | Torben Werner <torben.werner@yupiq.com> | 2014-03-21 12:46:27 +1100 |
---|---|---|
committer | Carl Suster <code@contraflo.ws> | 2014-03-21 12:46:27 +1100 |
commit | a6cabefb87e10e7a945d5b765d6637a192c7ecbe (patch) | |
tree | a12434ba1b988209f2b063e7cc2fe484078132a4 /PlayFramework.gitignore | |
parent | 65196929c4f755e52db83358bd29e96b021e2e58 (diff) | |
download | gitignore-a6cabefb87e10e7a945d5b765d6637a192c7ecbe.tar.gz gitignore-a6cabefb87e10e7a945d5b765d6637a192c7ecbe.zip |
Increase the specificity of PlayFramework rules
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. Fixes #921.
Diffstat (limited to 'PlayFramework.gitignore')
-rw-r--r-- | PlayFramework.gitignore | 24 |
1 files changed, 11 insertions, 13 deletions
diff --git a/PlayFramework.gitignore b/PlayFramework.gitignore index 3bf02289..4735f055 100644 --- a/PlayFramework.gitignore +++ b/PlayFramework.gitignore @@ -1,19 +1,17 @@ # Ignore Play! working directory # -bin -db -eclipse -lib -log -logs -modules -precompiled -project/project -project/target -target -tmp +bin/ +/db +.eclipse +/lib/ +/logs/ +/modules +/project/project +/project/target +/target +tmp/ test-result server.pid *.iml *.eml -dist +/dist/ .cache |