From 10759a93f23d32aab16505216db6a675c4edf93f Mon Sep 17 00:00:00 2001 From: MartinCupela Date: Tue, 7 Jun 2022 12:53:46 +0200 Subject: [PATCH 1/3] chore: add pull request template --- .github/PULL_REQUEST_TEMPLATE.md | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .github/PULL_REQUEST_TEMPLATE.md diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md new file mode 100644 index 00000000..42935924 --- /dev/null +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -0,0 +1,11 @@ +### 🎯 Goal + +_Describe why we are making this change_ + +### 🛠 Implementation details + +_Provide a description of the implementation_ + +### 🎨 UI Changes + +_Add relevant screenshots_ From 69c85fa911fe3c05ebc854f94cc7b6f359a3d75f Mon Sep 17 00:00:00 2001 From: MartinCupela Date: Tue, 7 Jun 2022 12:55:32 +0200 Subject: [PATCH 2/3] chore: exclude IDE specific directories from VCS --- .gitignore | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.gitignore b/.gitignore index 67045665..a4de19ad 100644 --- a/.gitignore +++ b/.gitignore @@ -102,3 +102,7 @@ dist # TernJS port file .tern-port + +# IDEs +.idea +.vscode \ No newline at end of file From 233a17e2cdd624a0a883650fc94330c8c160d284 Mon Sep 17 00:00:00 2001 From: MartinCupela Date: Tue, 7 Jun 2022 12:58:08 +0200 Subject: [PATCH 3/3] style: add trailing newline to .gitignore --- .gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index a4de19ad..b91eeeae 100644 --- a/.gitignore +++ b/.gitignore @@ -105,4 +105,4 @@ dist # IDEs .idea -.vscode \ No newline at end of file +.vscode