1
0
Fork 0
mirror of https://codeberg.org/Mo8it/dotfiles.git synced 2024-10-17 20:52:40 +00:00
dotfiles/.config/dprint.json

22 lines
431 B
JSON
Raw Normal View History

2022-11-08 16:57:11 +00:00
{
2023-02-26 18:57:41 +00:00
"typescript": {
},
"json": {
},
"markdown": {
},
2023-07-27 14:26:07 +00:00
"toml": {
},
2023-08-28 19:10:47 +00:00
"includes": ["**/*.{ts,tsx,js,jsx,json,md,toml}"],
2022-11-08 16:57:11 +00:00
"excludes": [
2023-02-26 18:57:41 +00:00
"**/node_modules",
"**/*-lock.json"
2022-11-08 16:57:11 +00:00
],
"plugins": [
2023-08-28 19:10:47 +00:00
"https://plugins.dprint.dev/typescript-0.86.2.wasm",
2023-07-27 14:26:07 +00:00
"https://plugins.dprint.dev/json-0.17.4.wasm",
2023-08-28 19:10:47 +00:00
"https://plugins.dprint.dev/markdown-0.16.0.wasm",
2023-07-27 14:26:07 +00:00
"https://plugins.dprint.dev/toml-0.5.4.wasm"
2022-11-08 16:57:11 +00:00
]
}