From 9b2e14bc8f0e2ed4dd2ad3fce0c1174d5a220d65 Mon Sep 17 00:00:00 2001 From: Orasund Date: Thu, 16 Jul 2020 07:09:52 +0200 Subject: [PATCH] Create pull_request_template.md --- .github/pull_request_template.md | 24 ++++++++++++++++++++++++ 1 file changed, 24 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 0000000..a29b5fa --- /dev/null +++ b/.github/pull_request_template.md @@ -0,0 +1,24 @@ +# Description + +_Please add a detailed description what you did._ + +**Pull request solving issue #[your issue].** + +_Please only open Pull Requests for existing issues._ + +# Checklist for new Widget + +* [ ] Checked out the Material design specification of the widget +* [ ] Added constructors and Widgets Type in `src/Internal/[Your Widget].elm` +* [ ] Added Style Type in `src/Widget/Style.elm` +* [ ] In `src/Widget.elm`: + * [ ] Added a copy of the Widget Type + * [ ] Added a copy of each constructor + * [ ] Linked each constructor to its representative in `src/Internal/[You Widget].elm` + * [ ] Replaced the Style Type in the type signiture of each constructor with its definition + * [ ] Added Documentation +* [ ] Added a Template style in `src/Widget/Style/Template.elm` + +**Optional:** +* [ ] Added a Material design style in `src/Widget/Style/Material.elm` +* [ ] Added a Ellie to the docs (+ copied it into `example/src/Example/[Your Widget].elm`)