We encourage community feedback and contributions. Here are some ways you can get involved if you are interested.
We are always looking for new feature ideas! If you have an idea, check if others have submitted a similar idea in the Idea suggestion thread. You can upvote existing suggestions or submit a new one.
If you're unsure what to work on, check the Issues page.
Please attempt to match the style of the surrounding code as much as possible.
Filenames should be all lowercase and can include underscores.
The names of variables (including function parameters) and data members are all lowercase, with underscores between words. Data members of classes (and structs) additionally have 'm_' prepended. For instance: local_variable, m_struct_data_member, m_class_data_member.
The names of functions are all lowercase, with underscores between words.
Should be named with all capitals and underscores between words.
You should always test your code before submitting a pull request.