From e0045d5c63ba310b7f20a9750338015f156f8c13 Mon Sep 17 00:00:00 2001 From: Kunall Banerjee Date: Wed, 19 Apr 2017 17:56:01 -0400 Subject: [PATCH 1/3] Create a .github/. Move allowed templates inside. Closes #1136. --- ISSUE_TEMPLATE.md => .github/ISSUE_TEMPLATE.md | 0 PULL_REQUEST_TEMPLATE.md => .github/PULL_REQUEST_TEMPLATE.md | 0 2 files changed, 0 insertions(+), 0 deletions(-) rename ISSUE_TEMPLATE.md => .github/ISSUE_TEMPLATE.md (100%) rename PULL_REQUEST_TEMPLATE.md => .github/PULL_REQUEST_TEMPLATE.md (100%) diff --git a/ISSUE_TEMPLATE.md b/.github/ISSUE_TEMPLATE.md similarity index 100% rename from ISSUE_TEMPLATE.md rename to .github/ISSUE_TEMPLATE.md diff --git a/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md similarity index 100% rename from PULL_REQUEST_TEMPLATE.md rename to .github/PULL_REQUEST_TEMPLATE.md From 70866f043418224ff6303be8712ab1cbb292289f Mon Sep 17 00:00:00 2001 From: Kunall Banerjee Date: Thu, 20 Apr 2017 09:26:02 -0400 Subject: [PATCH 2/3] Move CONTRIBUTING.md -> .github --- CONTRIBUTING.md => .github/CONTRIBUTING.md | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename CONTRIBUTING.md => .github/CONTRIBUTING.md (100%) diff --git a/CONTRIBUTING.md b/.github/CONTRIBUTING.md similarity index 100% rename from CONTRIBUTING.md rename to .github/CONTRIBUTING.md From 6ed2422fc69eb98b43197a824b5070093196a41e Mon Sep 17 00:00:00 2001 From: Kunall Banerjee Date: Thu, 20 Apr 2017 20:04:17 -0400 Subject: [PATCH 3/3] :lipstick: Global editor configs for prettier diffs! --- .editorconfig | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.editorconfig b/.editorconfig index 2688a6504ee0..ef11db305ed6 100644 --- a/.editorconfig +++ b/.editorconfig @@ -5,6 +5,10 @@ root = true [*.{js}] charset = utf-8 +[*] +trim_trailing_whitespace = true +insert_final_newline = true + # 4 space indentation [*.{md,js,jsx,scss,hbs}] indent_style = space