From 54369915446742cfe1ec27a40bf0bef32d206c26 Mon Sep 17 00:00:00 2001 From: Stijn de Gooijer Date: Sun, 12 Feb 2023 18:00:39 +0100 Subject: [PATCH] chore(rust,python): Update dprint config excludes (#6822) --- dprint.json | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/dprint.json b/dprint.json index ae8014fc66bd..a62e1a4b1bbd 100644 --- a/dprint.json +++ b/dprint.json @@ -1,12 +1,13 @@ { - "incremental": true, - "toml": {}, "includes": [ "**/*.{md,toml}" ], - "excludes": [], + "excludes": [ + "**/target", + "py-polars/venv" + ], "plugins": [ - "https://plugins.dprint.dev/markdown-0.14.1.wasm" - "https://plugins.dprint.dev/toml-0.5.4.wasm", + "https://plugins.dprint.dev/markdown-0.15.2.wasm", + "https://plugins.dprint.dev/toml-0.5.4.wasm" ] }