From aded5415011edd54cae9173bf5f0cab6bd01708d Mon Sep 17 00:00:00 2001 From: Michael Barz Date: Wed, 23 Sep 2020 15:50:20 +0200 Subject: [PATCH] Add missing skeleton [skip ci] --- .editorconfig | 27 +++++++++++++++++++++++++++ .gitignore | 9 +++++++++ ocis/CHANGELOG.md => CHANGELOG.md | 0 ocis/LICENSE => LICENSE | 0 ocis/README.md => README.md | 0 ocis/.dockerignore | 3 +++ ocis/.gitignore | 18 ------------------ 7 files changed, 39 insertions(+), 18 deletions(-) create mode 100644 .editorconfig create mode 100644 .gitignore rename ocis/CHANGELOG.md => CHANGELOG.md (100%) rename ocis/LICENSE => LICENSE (100%) rename ocis/README.md => README.md (100%) create mode 100644 ocis/.dockerignore delete mode 100644 ocis/.gitignore diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000000..bc321db7b2 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,27 @@ +# http://editorconfig.org + +root = true + +[*] +charset = utf-8 +insert_final_newline = true +trim_trailing_whitespace = true + +[Makefile] +indent_style = tab +indent_size = 4 + +[*.go] +indent_style = tab +indent_size = 4 + +[*.starlark] +indent_style = space +indent_size = 2 + +[*.yml] +indent_style = space +indent_size = 2 + +[*.md] +trim_trailing_whitespace = true diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000000..e58f4337ed --- /dev/null +++ b/.gitignore @@ -0,0 +1,9 @@ +*/coverage.out + +/ocis/bin +/ocis/dist +/hugo +*.key +*crt + +.idea \ No newline at end of file diff --git a/ocis/CHANGELOG.md b/CHANGELOG.md similarity index 100% rename from ocis/CHANGELOG.md rename to CHANGELOG.md diff --git a/ocis/LICENSE b/LICENSE similarity index 100% rename from ocis/LICENSE rename to LICENSE diff --git a/ocis/README.md b/README.md similarity index 100% rename from ocis/README.md rename to README.md diff --git a/ocis/.dockerignore b/ocis/.dockerignore new file mode 100644 index 0000000000..26258eb154 --- /dev/null +++ b/ocis/.dockerignore @@ -0,0 +1,3 @@ +* +!dist/ +!bin/ diff --git a/ocis/.gitignore b/ocis/.gitignore deleted file mode 100644 index ecf38b7e08..0000000000 --- a/ocis/.gitignore +++ /dev/null @@ -1,18 +0,0 @@ -coverage.out - -/bin -/dist -/hugo -*.key -*crt - -/eos-docker - -# API acceptance tests -composer.lock -/vendor -vendor-bin/**/vendor -vendor-bin/**/composer.lock -tests/acceptance/output - -.idea \ No newline at end of file