From 1b588c4ba0b2d85df71054107c3be99086166f6f Mon Sep 17 00:00:00 2001 From: Kevin Peters Date: Thu, 2 Aug 2018 10:58:41 +0200 Subject: [PATCH 1/2] fix: use spaces instead of tabs and include editorconfig --- .editorconfig | 10 ++++++++++ Dockerfile | 12 ++++++------ 2 files changed, 16 insertions(+), 6 deletions(-) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..0ea0cc4 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,10 @@ +# http://editorconfig.org +root = true + +[*] +indent_style = space +indent_size = 4 +end_of_line = lf +charset = utf-8 +trim_trailing_whitespace = true +insert_final_newline = true diff --git a/Dockerfile b/Dockerfile index e32b60f..5e20e3b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,12 +3,12 @@ FROM node:8.11.3-slim RUN apt-get update && \ apt-get install -y --no-install-recommends \ - git \ - python \ - make \ - gcc \ - g++ \ - libc6-dev + git \ + python \ + make \ + gcc \ + g++ \ + libc6-dev RUN git clone https://github.com/Financial-Times/polyfill-service.git /polyfill From bbe1bb721390d8a50a3bd664aa8a5fa177de34d3 Mon Sep 17 00:00:00 2001 From: Kevin Peters Date: Thu, 2 Aug 2018 11:01:35 +0200 Subject: [PATCH 2/2] feat: add mit license --- LICENSE | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 LICENSE diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..7a6a080 --- /dev/null +++ b/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2018-present 3YOURMIND + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE.