Skip to content

Commit 542e4ca

Browse files
committed
Use checkboxes as bullet points for the PR review checklists
1 parent 6870ac0 commit 542e4ca

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

doc/devel/coding_guide.rst

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
.. _pr-guidelines:
22

3+
.. raw:: html
4+
5+
<style>
6+
.checklist { list-style: none; padding: 0; margin: 0; }
7+
.checklist li { padding-left: 24px; margin-right: 6px; }
8+
.checklist li:before { content: "\2751"; }
9+
</style>
10+
311
***********************
412
Pull request guidelines
513
***********************
@@ -23,6 +31,8 @@ Summary for PR authors
2331

2432
When making a PR, pay attention to:
2533

34+
.. rst-class:: checklist
35+
2636
* :ref:`Target the master branch <pr-branch-selection>`.
2737
* Adhere to the :ref:`coding_guidelines`.
2838
* Update the :ref:`documentation <pr-documentation>` if necessary.
@@ -47,13 +57,17 @@ Summary for PR reviewers
4757

4858
Content topics:
4959

60+
.. rst-class:: checklist
61+
5062
* Is the feature / bugfix reasonable?
5163
* Does the PR conform with the :ref:`coding_guidelines`?
5264
* Is the :ref:`documentation <pr-documentation>` (docstrings, examples,
5365
what's new, API changes) updated?
5466

5567
Organizational topics:
5668

69+
.. rst-class:: checklist
70+
5771
* Make sure all :ref:`automated tests <pr-automated-tests>` pass.
5872
* The PR should :ref:`target the master branch <pr-branch-selection>`.
5973
* Tag with descriptive :ref:`labels <pr-labels>`.

0 commit comments

Comments
 (0)