From cef259c945a50c3e3884564c63da4a9a6f2abcd5 Mon Sep 17 00:00:00 2001 From: merwanehamadi Date: Tue, 4 Jul 2023 17:34:55 -0700 Subject: [PATCH] Add pr template (#52) --- .github/PULL_REQUEST_TEMPLATE.md | 15 +++++++++++++++ 1 file changed, 15 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..ee5d8bf1 --- /dev/null +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -0,0 +1,15 @@ +### Background + + +### Changes + + + +### PR Quality Checklist +- [ ] I have run the following commands against my code to ensure it passes our linters: + ```shell + black . + isort . + mypy . + autoflake --remove-all-unused-imports --recursive --ignore-init-module-imports --ignore-pass-after-docstring --in-place agbenchmark + ```