markdownlint/doc/Prettier.md
Adam Moss cc701ea700 fix(prettier): add ordered list configuration
Signed-off-by: Adam Moss <2951486+adam-moss@users.noreply.github.com>
2022-11-22 11:10:00 -08:00

28 lines
714 B
Markdown

# Using `markdownlint` with Prettier
[`Prettier`](https://prettier.io) is a popular code formatter.
For the most part, Prettier works seamlessly with `markdownlint`.
You can `extend` the [`prettier.json`](../style/prettier.json) style to disable
all `markdownlint` rules that overlap with Prettier.
Other scenarios are documented below.
## List item indentation
The default settings of `markdownlint` and `Prettier` are compatible and don't
result in any linting violations. If `Prettier` is used with `--tab-width` set
to `4`, the following `markdownlint` configuration can be used:
```json
{
"MD007": {
"indent": 4
},
"MD030": {
"ul_single": 3,
"ul_multi": 3,
"ol_multi": 2
}
}
```