From e1f57483d6557151baa68f145a697ca894fa4eb8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=B6nke=20Ludwig?= Date: Wed, 27 Jan 2016 23:02:37 +0100 Subject: [PATCH] Add .travis.yml and .editorconfig. See #2. --- .editorconfig | 9 +++++++++ .travis.yml | 9 +++++++++ 2 files changed, 18 insertions(+) create mode 100644 .editorconfig create mode 100644 .travis.yml diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..decb0cd --- /dev/null +++ b/.editorconfig @@ -0,0 +1,9 @@ +root = true + +[*.{c,h,d,di,dd,json}] +end_of_line = lf +insert_final_newline = true +indent_style = tab +indent_size = 4 +trim_trailing_whitespace = true +charset = utf-8 diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..fd26336 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,9 @@ +language: d + +d: + - dmd-2.070.0 + - dmd-2.069.2 + - dmd-2.068.2 + - dmd-2.067.1 + +sudo: false