LUFA USB descriptor cleanup (#4871)
[jackhill/qmk/firmware.git] / docs / contributing.md
CommitLineData
7b0356d1 1# How to Contribute
2db4ad21 2
3πŸ‘πŸŽ‰ First off, thanks for taking the time to read this and contribute! πŸŽ‰πŸ‘
4
5Third-party contributions help us grow and improve QMK. We want to make the pull request and contribution process useful and easy for both contributors and maintainers. To this end we've put together some guidelines for contributors to help your pull request be accepted without major changes.
6
7* [Project Overview](#project-overview)
8* [Coding Conventions](#coding-conventions)
9* [General Guidelines](#general-guidelines)
10* [What does the Code of Conduct mean for me?](#what-does-the-code-of-conduct-mean-for-me)
11
7b0356d1 12## I Don't Want to Read This Whole Thing! I Just Have a Question!
2db4ad21 13
48913153 14If you'd like to ask questions about QMK you can do so on the [OLKB Subreddit](https://reddit.com/r/olkb) or on [Discord](https://discord.gg/Uq7gcHh).
2db4ad21 15
16Please keep these things in mind:
17
18* It may take several hours for someone to respond to your question. Please be patient!
19* Everyone involved with QMK is donating their time and energy. We don't get paid to work on or answer questions about QMK.
20* Try to ask your question so it's as easy to answer as possible. If you're not sure how to do that these are some good guides:
21 * https://opensource.com/life/16/10/how-ask-technical-questions
22 * http://www.catb.org/esr/faqs/smart-questions.html
23
24# Project Overview
25
26QMK is largely written in C, with specific features and parts written in C++. It targets embedded processors found in keyboards, particularly AVR ([LUFA](http://www.fourwalledcubicle.com/LUFA.php)) and ARM ([ChibiOS](http://www.chibios.com)). If you are already well versed in Arduino programming you'll find a lot of the concepts and limitations familiar. Prior experience with Arduino is not required to successfully contribute to QMK.
27
28<!-- FIXME: We should include a list of resources for learning C here. -->
29
7b0356d1 30# Where Can I Go for Help?
2db4ad21 31
48913153 32If you need help you can [open an issue](https://github.com/qmk/qmk_firmware/issues) or [chat on Discord](https://discord.gg/Uq7gcHh).
2db4ad21 33
34# How Do I Make a Contribution?
35
36Never made an open source contribution before? Wondering how contributions work in QMK? Here's a quick rundown!
37
380. Sign up for a [GitHub](https://github.com) account.
391. Put together a keymap to contribute, [find an issue](https://github.com/qmk/qmk_firmware/issues) you are interested in addressing, or [a feature](https://github.com/qmk/qmk_firmware/issues?q=is%3Aopen+is%3Aissue+label%3Afeature) you would like to add.
402. Fork the repository associated with the issue to your GitHub account. This means that you will have a copy of the repository under `your-GitHub-username/qmk_firmware`.
413. Clone the repository to your local machine using `git clone https://github.com/github-username/repository-name.git`.
424. If you're working on a new feature consider opening an issue to talk with us about the work you're about to undertake.
435. Create a new branch for your fix using `git checkout -b branch-name-here`.
446. Make the appropriate changes for the issue you are trying to address or the feature that you want to add.
457. Use `git add insert-paths-of-changed-files-here` to add the file contents of the changed files to the "snapshot" git uses to manage the state of the project, also known as the index.
468. Use `git commit -m "Insert a short message of the changes made here"` to store the contents of the index with a descriptive message.
479. Push the changes to your repository on GitHub using `git push origin branch-name-here`.
4810. Submit a pull request to [QMK Firmware](https://github.com/qmk/qmk_firmware/pull/new/master).
4911. Title the pull request with a short description of the changes made and the issue or bug number associated with your change. For example, you can title an issue like so "Added more log outputting to resolve #4352".
5012. In the description of the pull request explain the changes that you made, any issues you think exist with the pull request you made, and any questions you have for the maintainer. It's OK if your pull request is not perfect (no pull request is), the reviewer will be able to help you fix any problems and improve it!
5113. Wait for the pull request to be reviewed by a maintainer.
5214. Make changes to the pull request if the reviewing maintainer recommends them.
5315. Celebrate your success after your pull request is merged!
54
7b0356d1 55# Coding Conventions
2db4ad21 56
a25dd58b 57Most of our style is pretty easy to pick up on. If you are familiar with either C or Python you should not have too much trouble with our local styles.
58
59* [Coding Conventions - C](coding_conventions_c.md)
60* [Coding Conventions - Python](coding_conventions_python.md)
dc5933af 61
2db4ad21 62# General Guidelines
63
64We have a few different types of changes in QMK, each requiring a different level of rigor. We'd like you to keep the following guidelines in mind no matter what type of change you're making.
65
bb53635f 66* Separate PR's into logical units. For example, do not submit one PR covering two separate features, instead submit a separate PR for each feature.
2db4ad21 67* Check for unnecessary whitespace with `git diff --check` before committing.
68* Make sure your code change actually compiles.
800ec55d
JH
69 * Keymaps: Make sure that `make keyboard:your_new_keymap` does not return an error
70 * Keyboards: Make sure that `make keyboard:all` does not return any errors
9bb259b6 71 * Core: Make sure that `make all` does not return any errors.
2db4ad21 72* Make sure commit messages are understandable on their own. You should put a short description (no more than 70 characters) on the first line, the second line should be empty, and on the 3rd and later lines you should describe your commit in detail, if required. Example:
73
74```
75Adjust the fronzlebop for the kerpleplork
76
77The kerpleplork was intermittently failing with error code 23. The root cause was the fronzlebop setting, which causes the kerpleplork to activate every N iterations.
78
79Limited experimentation on the devices I have available shows that 7 is high enough to avoid confusing the kerpleplork, but I'd like to get some feedback from people with ARM devices to be sure.
80```
81
82## Documentation
83
84Documentation is one of the easiest ways to get started contributing to QMK. Finding places where the documentation is wrong or incomplete and fixing those is easy! We also very badly need someone to edit our documentation, so if you have editing skills but aren't sure where or how to jump in please [reach out for help](#where-can-i-go-for-help)!
85
86You'll find all our documentation in the `qmk_firmware/docs` directory, or if you'd rather use a web based workflow you can click "Suggest An Edit" at the top of each page on http://docs.qmk.fm/.
87
6d4f6f3f
DP
88When providing code examples in your documentation, try to observe naming conventions used elsewhere in the docs. For example, standardizing enums as `my_layers` or `my_keycodes` for consistency:
89
90```c
91enum my_layers {
92 _FIRST_LAYER,
93 _SECOND_LAYER
94};
95
96enum my_keycodes {
97 FIRST_LAYER = SAFE_RANGE,
98 SECOND_LAYER
99};
100```
101
2db4ad21 102## Keymaps
103
104Most first-time QMK contributors start with their personal keymaps. We try to keep keymap standards pretty casual (keymaps, after all, reflect the personality of their creators) but we do ask that you follow these guidelines to make it easier for others to discover and learn from your keymap.
105
73ddb764 106* Write a `readme.md` using [the template](documentation_templates.md).
2db4ad21 107* All Keymap PR's are squashed, so if you care about how your commits are squashed you should do it yourself
108* Do not lump features in with keymap PR's. Submit the feature first and then a second PR for the keymap.
00733f4b 109* Do not include `Makefile`s in your keymap folder (they're no longer used)
0d936b2f 110* Update copyrights in file headers (look for `%YOUR_NAME%`)
2db4ad21 111
112## Keyboards
113
114Keyboards are the raison d'Γͺtre for QMK. Some keyboards are community maintained, while others are maintained by the people responsible for making a particular keyboard. The `readme.md` should tell you who maintains a particular keyboard. If you have questions relating to a particular keyboard you can [Open An Issue](https://github.com/qmk/qmk_firmware/issues) and tag the maintainer in your question.
115
bb53635f 116We also ask that you follow these guidelines:
2db4ad21 117
73ddb764 118* Write a `readme.md` using [the template](documentation_templates.md).
2db4ad21 119* Keep the number of commits reasonable or we will squash your PR
120* Do not lump core features in with new keyboards. Submit the feature first and then submit a separate PR for the keyboard.
00733f4b
JH
121* Name `.c`/`.h` file after the immediate parent folder, eg `/keyboards/<kb1>/<kb2>/<kb2>.[ch]`
122* Do not include `Makefile`s in your keyboard folder (they're no longer used)
0d936b2f 123* Update copyrights in file headers (look for `%YOUR_NAME%`)
2db4ad21 124
125## Quantum/TMK Core
126
af37bb2f 127Before you put a lot of work into building your new feature you should make sure you are implementing it in the best way. You can get a basic understanding of QMK by reading [Understanding QMK](understanding_qmk.md), which will take you on a tour of the QMK program flow. From here you should talk to us to get a sense of the best way to implement your idea. There are two main ways to do this:
2db4ad21 128
48913153 129* [Chat on Discord](https://discord.gg/Uq7gcHh)
2db4ad21 130* [Open an Issue](https://github.com/qmk/qmk_firmware/issues/new)
131
132Feature and Bug Fix PR's affect all keyboards. We are also in the process of restructuring QMK. For this reason it is especially important for significant changes to be discussed before implementation has happened. If you open a PR without talking to us first please be prepared to do some significant rework if your choices do not mesh well with our planned direction.
133
134Here are some things to keep in mind when working on your feature or bug fix.
135
136* **Disabled by default** - memory is a pretty limited on most chips QMK supports, and it's important that current keymaps aren't broken, so please allow your feature to be turned **on**, rather than being turned off. If you think it should be on by default, or reduces the size of the code, please talk with us about it.
137* **Compile locally before submitting** - hopefully this one is obvious, but things need to compile! Our Travis system will catch any issues, but it's generally faster for you to compile a few keyboards locally instead of waiting for the results to come back.
800ec55d 138* **Consider revisions and different chip-bases** - there are several keyboards that have revisions that allow for slightly different configurations, and even different chip-bases. Try to make a feature supported in ARM and AVR, or automatically disabled on platforms it doesn't work on.
2db4ad21 139* **Explain your feature** - Document it in `docs/`, either as a new file or as part of an existing file. If you don't document it other people won't be able to benefit from your hard work.
140
bb53635f 141We also ask that you follow these guidelines:
2db4ad21 142
143* Keep the number of commits reasonable or we will squash your PR
144* Do not lump keyboards or keymaps in with core changes. Submit your core changes first.
73ddb764 145* Write [Unit Tests](unit_testing.md) for your feature
2db4ad21 146* Follow the style of the file you are editing. If the style is unclear or there are mixed styles you should conform to the [coding conventions](#coding-conventions) above.
147
148## Refactoring
149
150To maintain a clear vision of how things are laid out in QMK we try to plan out refactors in-depth and have a collaborator make the changes. If you have an idea for refactoring, or suggestions, [open an issue](https://github.com/qmk/qmk_firmware/issues), we'd love to talk about how QMK can be improved.
151
7b0356d1 152# What Does the Code of Conduct Mean for Me?
2db4ad21 153
67cc5ceb 154Our [Code of Conduct](https://github.com/qmk/qmk_firmware/blob/master/CODE_OF_CONDUCT.md) means that you are responsible for treating everyone on the project with respect and courtesy regardless of their identity. If you are the victim of any inappropriate behavior or comments as described in our Code of Conduct, we are here for you and will do the best to ensure that the abuser is reprimanded appropriately, per our code.