From 784973a8fbbcbf41074bde35a40d444da17a52b0 Mon Sep 17 00:00:00 2001 From: Thom Wiggers Date: Thu, 12 Dec 2019 13:38:34 +0100 Subject: [PATCH] Update PR template along practice (#254) * remove automatically checked property * Allow PR-submitters to self-document. We don't ever use these, so allow submitters of PRs to self-document. --- .github/pull_request_template.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md index ce2bb1d8..676086df 100644 --- a/.github/pull_request_template.md +++ b/.github/pull_request_template.md @@ -4,12 +4,10 @@ #### Manually checked properties - * [ ] No stringification macros * [ ] Output-parameter pointers in functions are on the left * [ ] Negative return values on failure of API functions (within restrictions of FO transform). -* [ ] `const` arguments are labeled as `const` * [ ] variable declarations at the beginning (except in `for (size_t i=...`) * Optional: * [ ] All integer types are of fixed size, using `stdint.h` types (including `uint8_t` instead of `unsigned char`)