-
Notifications
You must be signed in to change notification settings - Fork 12
/
dprint.json
34 lines (34 loc) · 1 KB
/
dprint.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{
"$schema": "https://dprint.dev/schemas/v0.json",
"incremental": true,
"includes": [
"**/*.{toml}",
"**/*.{md}",
"**/*.{yml,yaml}"
],
"excludes": [
"**/CHANGELOG.md",
"**/target/",
"**/build/",
"external-crates/move/crates/move-docgen/tests/sources/*.md",
"bridge/evm/lib/",
"examples/trading/api/prisma/migrations/migration_lock.toml",
"sdk/create-dapp/templates/",
"crates/iota-core/tests/staged/iota.yaml",
"crates/iota-framework/docs/**/*.{md}",
"crates/iota-graphql-rpc/docs/examples.md",
"crates/iota-light-client/example_config/20873329.yaml",
"**/pnpm-lock.yaml",
"external-crates/move/crates/move-stdlib/**/docs/**/*.md",
"nre/helm/graphql/templates/**/*.yaml",
"nre/helm/indexer/templates/**/*.yaml"
],
"toml": {
"lineWidth": 80
},
"plugins": [
"https://plugins.dprint.dev/toml-0.6.2.wasm",
"https://plugins.dprint.dev/markdown-0.17.1.wasm",
"https://plugins.dprint.dev/g-plane/pretty_yaml-v0.4.0.wasm"
]
}