Skip to content

Latest commit

 

History

History
35 lines (21 loc) · 609 Bytes

File metadata and controls

35 lines (21 loc) · 609 Bytes

Contributing to Miden Tutorials

First off, thanks for taking the time to contribute!

Markdown Formatting with Prettier

We use Prettier to ensure our Markdown files are consistently formatted.

Installation

  • Global Installation:

    npm install -g prettier
  • Local (Dev Dependency) Installation:

    npm install --save-dev prettier

Formatting Files

From the root of the project, run:

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

Make sure to run this command before submitting pull requests.

Thank you for contributing!