From e3136a8870b80b0f7898483e82e6461d4b8574bc Mon Sep 17 00:00:00 2001 From: Kenichi Kamiya Date: Thu, 16 May 2024 23:49:27 +0900 Subject: [PATCH] Add some renovate bot plugins and the updaters * Do not add docker plugin: https://github.com/dprint/dprint-plugin-dockerfile/issues/7 * Do not enable nix updater in renovate, use selfup to sync with other CIs --- .github/renovate.json | 11 +++++++++++ dprint.json | 16 ++++++++++++++-- 2 files changed, 25 insertions(+), 2 deletions(-) create mode 100644 .github/renovate.json diff --git a/.github/renovate.json b/.github/renovate.json new file mode 100644 index 0000000..c786126 --- /dev/null +++ b/.github/renovate.json @@ -0,0 +1,11 @@ +{ + "$schema": "https://docs.renovatebot.com/renovate-schema.json", + "extends": [ + "config:recommended", + "github>kachick/renovate-config-dprint#1.1.0" + ], + "labels": ["dependencies", "renovate"], + "nix": { + "enabled": false + } +} diff --git a/dprint.json b/dprint.json index eca077f..7a4c320 100644 --- a/dprint.json +++ b/dprint.json @@ -2,9 +2,21 @@ "json": { "trailingCommas": "never" }, - "markdown": {}, + "markdown": { + }, + "toml": { + }, + "malva": { + "quotes": "preferSingle" + }, + "markup": { + }, "plugins": [ "https://plugins.dprint.dev/json-0.19.2.wasm", - "https://plugins.dprint.dev/markdown-0.16.4.wasm" + "https://plugins.dprint.dev/markdown-0.16.4.wasm", + "https://plugins.dprint.dev/toml-0.6.1.wasm", + "https://plugins.dprint.dev/sql-0.2.0.wasm", + "https://plugins.dprint.dev/g-plane/malva-v0.3.1.wasm", + "https://plugins.dprint.dev/g-plane/markup_fmt-v0.8.0.wasm" ] }