Skip to content

Commit

Permalink
Update Markdown formatting for Prettier 3.4
Browse files Browse the repository at this point in the history
Prettier 3.4 removes extra spaces after unordered list line prefixes.

https://prettier.io/blog/2024/11/26/3.4.0#markdown
  • Loading branch information
br3ndonland committed Dec 20, 2024
1 parent d61c574 commit 1ed02be
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@ For full documentation visit [mkdocs.org](https://www.mkdocs.org).

## Commands

- `mkdocs new [dir-name]` - Create a new project.
- `mkdocs serve` - Start the live-reloading docs server.
- `mkdocs build` - Build the documentation site.
- `mkdocs -h` - Print help message and exit.
- `mkdocs new [dir-name]` - Create a new project.
- `mkdocs serve` - Start the live-reloading docs server.
- `mkdocs build` - Build the documentation site.
- `mkdocs -h` - Print help message and exit.

## Project layout

Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -72,13 +72,13 @@ check = [
"ruff check",
"ruff format --check",
"mypy",
"npx -s -y prettier@'^3' . --check",
"npx -s -y prettier@'^3.4' . --check",
"npx -s -y cspell --dot --gitignore *.md **/*.md",
]
format = [
"ruff check --fix",
"ruff format",
"npx -s -y prettier@'^3' . --write",
"npx -s -y prettier@'^3.4' . --write",
]

[tool.hatch.envs.production]
Expand Down

0 comments on commit 1ed02be

Please sign in to comment.