rustic/dprint.json
simonsan 166392bc51
style: exclude the CHANGELOG from dprint formatting
Signed-off-by: simonsan <14062932+simonsan@users.noreply.github.com>
2024-09-24 13:05:20 +02:00

31 lines
644 B
JSON

{
"lineWidth": 80,
"markdown": {
"lineWidth": 80,
"emphasisKind": "asterisks",
"strongKind": "asterisks",
"textWrap": "always"
},
"toml": {
"lineWidth": 80
},
"json": {
"lineWidth": 80,
"indentWidth": 4
},
"includes": [
"**/*.{md}",
"**/*.{toml}",
"**/*.{json}"
],
"excludes": [
"target/**/*",
"CHANGELOG.md"
],
"plugins": [
"https://plugins.dprint.dev/markdown-0.16.3.wasm",
"https://plugins.dprint.dev/toml-0.5.4.wasm",
"https://plugins.dprint.dev/json-0.19.1.wasm"
]
}