Skip to content

Commit

Permalink
Release Open Source. =)
Browse files Browse the repository at this point in the history
  • Loading branch information
jan0sch committed Aug 25, 2017
0 parents commit 22b8b00
Show file tree
Hide file tree
Showing 123 changed files with 9,210 additions and 0 deletions.
43 changes: 43 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
# Eclipse
*.pydevproject
.project
.metadata
bin/**
tmp/**
tmp/**/*
*.tmp
*.bak
*.swp
*~.nib
local.properties
.classpath
.settings/
.loadpath
# Emacs
*~
\#*\#
/.emacs.desktop
/.emacs.desktop.lock
.elc
auto-save-list
tramp
# IntelliJ Idea
*.iml
*.ipr
*.iws
.idea/
# Maven
target/
# NetBeans
nbproject/
# Vim
.*.sw[a-z]
*.un~
Session.vim
# Ensime
.ensime
.ensime_cache/
.ensime*.log
# Windows
Thumbs.db
Desktop.ini
16 changes: 16 additions & 0 deletions .scalafmt.conf
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# Only format files tracked by git.
project.git = true
# Default style with align.
style = defaultWithAlign
# Other options...
danglingParentheses = true
maxColumn = 100
project.excludeFilters = [".*\\.sbt"]
rewrite.rules = [RedundantBraces, RedundantParens, SortImports]
rewriteTokens = {
"=>" = "⇒"
"<-" = "←"
"->" = "→"
}
spaces.inImportCurlyBraces = true
unindentTopLevelOperators = true
10 changes: 10 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
language: scala
scala:
- 2.11.11
jdk:
- oraclejdk8
script:
- sbt clean coverage test coverageReport
#after_success:
# - bash <(curl -s https://codecov.io/bash)

12 changes: 12 additions & 0 deletions AUTHORS.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
Corporate Contributors
======================

- Copyright (c) 2014 - 2015 Wegtam UG (haftungsbeschränkt)
- Copyright (c) 2015 - 2017 Wegtam GmbH

Individual Contributors
=======================

- Jens Grassel
- André Schütz

Loading

0 comments on commit 22b8b00

Please sign in to comment.