summaryrefslogtreecommitdiffstats
path: root/.dprint.json
blob: fe3d49a0c110b34db76675e80bdcb03353687d2b (plain)
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
{
  "incremental": true,
  "typescript": {
    "indentWidth": 4
  },
  "json": {},
  "markdown": {
    "lineWidth": 100
  },
  "toml": {},
  "includes": [
    "docs/**/*.{ts,js,cjs,mjs}",
    "**/*.{md,toml,json}"
  ],
  "excludes": [
    "CHANGELOG.md",
    "docs/.vitepress/dist/**",
    "**/node_modules",
    "**/*-lock.json",
    ".github/*",
    "docs/??-??/**",
    "docs/??-???/**",
    "docs/???-??/**",
    "docs/???-???/**",
    "target/"
  ],
  "plugins": [
    "https://github.com/dprint/dprint-plugin-typescript/releases/download/0.89.3/plugin.wasm",
    "https://github.com/dprint/dprint-plugin-json/releases/download/0.19.2/plugin.wasm",
    "https://github.com/dprint/dprint-plugin-markdown/releases/download/0.16.4/plugin.wasm",
    "https://github.com/dprint/dprint-plugin-toml/releases/download/0.6.1/plugin.wasm"
  ]
}