From c1cfdd9d6eab290ed90bdadc77b18a73d1d64879 Mon Sep 17 00:00:00 2001 From: Sandro Date: Sat, 12 Oct 2024 03:28:05 +0200 Subject: [PATCH] Update .editorconfig, Create renovate.json (#2) * Update .editorconfig * Create renovate.json --- .editorconfig | 18 ++++++++++++++++++ .github/renovate.json | 24 ++++++++++++++++++++++++ 2 files changed, 42 insertions(+) create mode 100644 .github/renovate.json diff --git a/.editorconfig b/.editorconfig index 0da8f80..71ae1fa 100644 --- a/.editorconfig +++ b/.editorconfig @@ -1,3 +1,21 @@ +root = true + [*] +charset = utf-8 +end_of_line = lf indent_size = 2 indent_style = space +insert_final_newline = true +trim_trailing_whitespace = true + +[*.{diff,patch}] +end_of_line = unset +insert_final_newline = unset +trim_trailing_whitespace = unset + +[*.ts] +quote_type = single + +[Makefile] +indent_size = 1 +indent_style = tab diff --git a/.github/renovate.json b/.github/renovate.json new file mode 100644 index 0000000..774934d --- /dev/null +++ b/.github/renovate.json @@ -0,0 +1,24 @@ +{ + "$schema": "https://docs.renovatebot.com/renovate-schema.json", + "extends": [ + "config:recommended", + "default:pinDigestsDisabled", + "mergeConfidence:all-badges" + ], + "assignees": [ + "MarcelCoding", + "SuperSandro2000" + ], + "dependencyDashboardOSVVulnerabilitySummary": "all", + "osvVulnerabilityAlerts": true, + "postUpgradeTasks": { + "commands": ["./nix/update-pnpm-hash.sh"], + "executionMode": "branch", + "fileFilters": ["nix/frontend.nix"] + }, + "prHourlyLimit": 0, + "schedule": [ + "before 12am on sunday" + ], + "semanticCommits": "disabled" +}