2nd-year-guide/CONTRIBUTING.md
2024-08-07 02:26:16 +04:00

815 B

Contributing to the Project

Thank you for your interest in contributing to this project! Here are some guidelines to help you get started.

Markdown Formatting with Prettier

This project uses Prettier to automatically format Markdown files.

Setup

  1. Fork this repository

  2. Clone your forked repository:

git clone https://github.com/yourusername/your-repo.git
cd your-repo
  1. Install Bun (a.k.a. faster npm)

  2. Install dependencies:

bun install

Now Prettier will automatically format Markdown files on each commit. This is done using Husky and lint-staged.

If you want to manually use prettier, run:

bun x prettier --write "**/*.md"

Enjoy!