diff options
| author | Joaquim <joaquim.org@gmail.com> | 2021-02-01 10:44:10 +0000 |
|---|---|---|
| committer | Joaquim <joaquim.org@gmail.com> | 2021-02-01 10:44:10 +0000 |
| commit | ccd423bcef52b241fa0ced82d59fdb432b4347de (patch) | |
| tree | a57c56f146faf53153f5a188fdb33ea7430872ef /CONTRIBUTING.md | |
| parent | a456887eff1bc0de6c6a8ecb49a961ffe75661db (diff) | |
| parent | 9c35b6fe5dc889b589b979dd7c650c70f302854b (diff) | |
Merge branch 'develop' of https://github.com/JF002/Pinetime into LVGL7
Diffstat (limited to 'CONTRIBUTING.md')
| -rw-r--r-- | CONTRIBUTING.md | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md new file mode 100644 index 00000000..a6fa6828 --- /dev/null +++ b/CONTRIBUTING.md @@ -0,0 +1,33 @@ +This contribution guide is in progress, improvements are welcome. + +### Code style + +Any C++ code PRs should aim to follow the style of existing code in the project. + +Using an autoformatter is heavily recommended, but make sure it's configured properly. + +There's currently preconfigured autoformatter rules for: + + * CLion (IntelliJ) in .idea/codeStyles/Project.xml + +You can use those to configure your own IDE if it's not already on the list. + +#### Linting errors and compiler warnings + +Try to avoid any currently enabled warnings and try to reduce the amount of linter errors. + +#### Spelling + +Make sure you spellcheck your code before commiting it. + +#### TODO, FIXME + +Check before commiting that you haven't forgotten anything, preferably don't leave these in your commits. + +#### Licence headers + +You should add your name to the comma-space separated list of contributors if there's a license header. + +### License + +By contributing you agree to licence your code under the repository's general license (which is currently GPL-v3+). |
