Skip to content

Latest commit

 

History

History
21 lines (17 loc) · 908 Bytes

contributing.md

File metadata and controls

21 lines (17 loc) · 908 Bytes

Contributing the Artillery OS

First off, thanks for taking the time to contribute! Contributions to the Artillery OS project are more than welcome. The one of the biggest intentions of Artillery OS is making programming fun again, so we hate the strict rules as you are :) But we have few standarts to keep projact maintability. You can check them out in this document and please keep in mind before opening a pull request.

Coding Style

  • Linux C style is used in the project. To ensure this, there is a .clang-format file in the main directory. This file allows the formatting of the code you have written. Make sure to format your code according to this Linux format before pushing it.

  • The snake_case is used

  • Comments should be like this:

/*
 * This is a long comment.
 * Second line.
 * Third line.
 */

BIGGEST RULE OF THE PROJECT

Just have fun :) and thats all. Happy hacking!