Wiki

Clone wiki

fuppes-fork / Developer Conventions

The fuppes project follows a number of general development rules. Consider them just 'the way we do things around here'. These rules help the project develop faster because everybody is on the same page. So here they are in bullet point form:

  • We use AStyle to maintain the code style of the project. Change your editor to match that style if you want to develop for fuppes. The advantage of doing this is that reviewing pull requests is much simpler because you only see the changes that actually matter in the diff.
  • Where possible use a third-party cross-platform library to do the heavy lifting for you. The less code we have to personally maintain in this project the better.
  • When you store directories internally then make sure that they are stored without trailing slashes. If you want to use them you can manually add the slashes.

This list is just a starter list and is expected to grow over time. Please put more items into this list whenever you can.

Updated