diff options
author | 3geek14 <nerd.of.pi@gmail.com> | 2023-08-03 04:02:40 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-08-03 01:02:40 -0700 |
commit | aa8d1c5e07f619b6b1bd6439e182b81bbee5a158 (patch) | |
tree | c9f72b095af338e1f8210d4fe0b9e89aa87761a7 | |
parent | 19536b819056c3ea2188d0451f56c443c8a11289 (diff) |
Clarify custom keycode enum requirement for PRs (#21648)
-rw-r--r-- | docs/pr_checklist.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/pr_checklist.md b/docs/pr_checklist.md index d22e912e86..0d6b4db206 100644 --- a/docs/pr_checklist.md +++ b/docs/pr_checklist.md @@ -42,7 +42,7 @@ If there are any inconsistencies with these recommendations, you're best off [cr - `#include QMK_KEYBOARD_H` preferred to including specific board files - prefer layer `enum`s to `#define`s -- require custom keycode `enum`s to `#define`s, first entry must have ` = SAFE_RANGE` +- custom keycode `enum`s must have first entry `= SAFE_RANGE` - terminating backslash (`\`) in lines of LAYOUT macro parameters is superfluous and should be removed - some care with spacing (e.g., alignment on commas or first char of keycodes) makes for a much nicer-looking keymap |