Skip to content

Commit b52f646

Browse files
authored
Merge pull request #18 from auke-/gitignore
Add .gitignore which ignores common IDE and OS files
2 parents 11de73f + 6c92119 commit b52f646

1 file changed

Lines changed: 40 additions & 0 deletions

File tree

.gitignore

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
# Synapse test output
2+
derby.log
3+
logs/
4+
5+
# Eclipse
6+
.project
7+
.classpath
8+
.settings/
9+
bin/
10+
11+
# IntelliJ
12+
.idea
13+
*.ipr
14+
*.iml
15+
*.iws
16+
17+
# NetBeans
18+
nb-configuration.xml
19+
20+
# Visual Studio Code
21+
.vscode
22+
23+
# OSX
24+
.DS_Store
25+
26+
# Vim
27+
*.swp
28+
*.swo
29+
30+
# patch
31+
*.orig
32+
*.rej
33+
34+
# Maven
35+
target/
36+
pom.xml.tag
37+
pom.xml.releaseBackup
38+
pom.xml.versionsBackup
39+
release.properties
40+
dependency-reduced-pom.xml

0 commit comments

Comments
 (0)