summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorQMK Bot <hello@qmk.fm>2023-12-21 12:31:24 +0000
committerQMK Bot <hello@qmk.fm>2023-12-21 12:31:24 +0000
commit9069c4540f11dc1d17d0f13920cb1cd2dc8aa9f7 (patch)
treed99a495aeb99755213ded96f544da8ed536a7419 /docs
parent088853dd22418947cd24a2ae3e51cf5625513f4f (diff)
parent5031e0e35c6c497b58b1f3122d8e9d17f0284733 (diff)
Merge remote-tracking branch 'origin/master' into develop
Diffstat (limited to 'docs')
-rw-r--r--docs/pr_checklist.md11
1 files changed, 6 insertions, 5 deletions
diff --git a/docs/pr_checklist.md b/docs/pr_checklist.md
index 0ca47933b5..6a0ae31597 100644
--- a/docs/pr_checklist.md
+++ b/docs/pr_checklist.md
@@ -39,12 +39,13 @@ If there are any inconsistencies with these recommendations, you're best off [cr
## Keymap PRs
-!> Note that personal keymap submissions will no longer be accepted. This section applies to manufacturer-supported keymaps.
+!> Note that personal keymap submissions will no longer be accepted. This section applies to manufacturer-supported keymaps. Please see this [issue](https://github.com/qmk/qmk_firmware/issues/22724) for more information.
-- `#include QMK_KEYBOARD_H` preferred to including specific board files
-- prefer layer `enum`s to `#define`s
-- custom keycode `enum`s must have first entry `= SAFE_RANGE`
-- terminating backslash (`\`) in lines of LAYOUT macro parameters is superfluous and should be removed
+- PRs for vendor specific keymaps will be permitted. The naming convention for these should be `default_${vendor}`, `via_${vendor}` i.e. `via_clueboard`.
+ - vendor specific keymaps do not necessarily need to be "vanilla" and can be more richly featured than `default` or `via` stock keymaps.
+- #include QMK_KEYBOARD_H preferred to including specific board files
+- prefer layer enums to #defines
+- custom keycode enums must have first entry = SAFE_RANGE
- some care with spacing (e.g., alignment on commas or first char of keycodes) makes for a much nicer-looking keymap
## Keyboard PRs