diff options
| author | JF <jf@codingfield.com> | 2021-02-04 16:36:34 (GMT) |
|---|---|---|
| committer | Gitea <gitea@fake.local> | 2021-02-04 16:36:34 (GMT) |
| commit | 3f7360ca186933b600d362c12e7c62d9df509aa4 (patch) | |
| tree | 9e7bff44e541526ae50b183a64cfe1d22a13cc56 /CONTRIBUTING.md | |
| parent | 76ab14fa5f7979dd764b449396dc5835a286ec6d (diff) | |
| parent | 6259b816287f8f74dadf50334a445cd9fe16d415 (diff) | |
Merge branch 'develop' of JF/PineTime into master
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 0000000..a6fa682 --- /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+). |
