Skip to content

Latest commit

 

History

History
25 lines (16 loc) · 746 Bytes

README.md

File metadata and controls

25 lines (16 loc) · 746 Bytes

gridsome.org

This is the Git repository for gridsome.org. Feel free to contribute 🥳

Linting Markdown

We use markdownlint-cli to enforce style consistency rules on the documentation. The linter runs automatically on every push and pull request via GitHub Actions.

To install the linter on your machine, run the following:

npm install -g [email protected]

You can check your changes for linter errors by running:

markdownlint '**/*.md' --ignore node_modules

The linter can automatically fix certain classes of failure. To accept these fixes, run:

markdownlint '**/*.md' --ignore node_modules --fix