Skip to content

Commit a6cabef

Browse files
Torben Wernerarcresu
Torben Werner
authored andcommitted
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 github#921.
1 parent 6519692 commit a6cabef

File tree

1 file changed

+11
-13
lines changed

1 file changed

+11
-13
lines changed

PlayFramework.gitignore

Lines changed: 11 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,17 @@
11
# Ignore Play! working directory #
2-
bin
3-
db
4-
eclipse
5-
lib
6-
log
7-
logs
8-
modules
9-
precompiled
10-
project/project
11-
project/target
12-
target
13-
tmp
2+
bin/
3+
/db
4+
.eclipse
5+
/lib/
6+
/logs/
7+
/modules
8+
/project/project
9+
/project/target
10+
/target
11+
tmp/
1412
test-result
1513
server.pid
1614
*.iml
1715
*.eml
18-
dist
16+
/dist/
1917
.cache

0 commit comments

Comments
 (0)