mirror of
https://github.com/Imtjl/2nd-year-guide.git
synced 2026-09-12 19:50:58 +05:00
815 B
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
-
Fork this repository
-
Clone your forked repository:
git clone https://github.com/yourusername/your-repo.git
cd your-repo
-
Install Bun (a.k.a. faster npm)
-
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!