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

19 lines
367 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": {
},
"includes": ["**/*.{ts,tsx,js,jsx,cjs,mjs,json,md}"],
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-02-26 18:57:41 +00:00
"https://plugins.dprint.dev/typescript-0.83.0.wasm",
"https://plugins.dprint.dev/json-0.17.0.wasm",
"https://plugins.dprint.dev/markdown-0.15.2.wasm"
2022-11-08 16:57:11 +00:00
]
}