From cea75fcf8525cabbc3b14d4e2212ea4658c3f378 Mon Sep 17 00:00:00 2001 From: themodrnhakr Date: Thu, 25 Sep 2025 15:13:51 -0500 Subject: [PATCH] Add dprint config. --- dprint.json | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 dprint.json diff --git a/dprint.json b/dprint.json new file mode 100644 index 0000000..99b11cf --- /dev/null +++ b/dprint.json @@ -0,0 +1,32 @@ +{ + "typescript": { + }, + "json": { + }, + "markdown": { + }, + "toml": { + }, + "dockerfile": { + }, + "malva": { + }, + "markup": { + }, + "yaml": { + }, + "excludes": [ + "**/node_modules", + "**/*-lock.json" + ], + "plugins": [ + "https://plugins.dprint.dev/typescript-0.95.11.wasm", + "https://plugins.dprint.dev/json-0.20.0.wasm", + "https://plugins.dprint.dev/markdown-0.19.0.wasm", + "https://plugins.dprint.dev/toml-0.7.0.wasm", + "https://plugins.dprint.dev/dockerfile-0.3.3.wasm", + "https://plugins.dprint.dev/g-plane/malva-v0.14.3.wasm", + "https://plugins.dprint.dev/g-plane/markup_fmt-v0.24.0.wasm", + "https://plugins.dprint.dev/g-plane/pretty_yaml-v0.5.1.wasm" + ] +}