Skip to content
This repository has been archived by the owner on Feb 23, 2023. It is now read-only.

Latest commit

 

History

History
35 lines (26 loc) · 1.3 KB

CONTRIBUTING.md

File metadata and controls

35 lines (26 loc) · 1.3 KB

Contributing

Getting started

To get started you will need the following software installed:

You will also need the following VSCode extensions:

  • PROS-VSC (This includes the PROS executable)
  • Clang-Format (Requires Clang-Format to be installed seperately)

After installing the necessary software, properly set up git on your machine and clone this project using git clone <URI>.

From there, in the project directory, create a file at .vscode/settings.json with the following entries:

{
	"editor.formatOnSave": true,
    "editor.detectIndentation": false,
    "editor.insertSpaces": false,
    "editor.defaultFormatter": "xaver.clang-format",
	"clang-format.style": "file",
}

Now, upon saving files, your code will be properly formatted for consistency. You are now ready to modify files in this project.

Building

To build, you may run make and then pros upload to download to the brain, or you can run the build.sh script to do that for you automatically.