Skip to content

Latest commit

 

History

History
50 lines (31 loc) · 1.65 KB

CONTRIBUTING.md

File metadata and controls

50 lines (31 loc) · 1.65 KB

Contributing

Thanks for your interest in contributing! Please take a moment to review this document in order to make the contribution process easy and effective for everyone involved.

Pull requests

Please ask first before starting work on any significant changes/features!

It is never a fun experience to put a lot of work into a pull request only to have it rejected because it doesn't fit with the project's goals or because someone else is already working on it.

Getting started

Prerequisites

Project setup

  1. Fork and clone the repository
  2. Run npm install to install dependencies
  3. Run dotnet build Ignis.sln to build the project

This should be all you need to get started. If you run into any issues, please let us know by opening an issue.

Coding standards

We use Husky.Net to enforce coding standards. As long as you followed the setup instructions above, you should be good to go.

Running tests

Ignis uses xUnit for unit testing. You can run the tests with the following command:

dotnet test Ignis.sln

Please ensure that the tests are passing when submitting a pull request. If you're adding new features to Headless UI, please include tests!

Project structure

The above diagram shows the project structure. Ignis contains multiple packages for different purposes. You can read more about them in the documentation.