diff --git a/.editorconfig b/.editorconfig index dcf6e40..2ecdb28 100644 --- a/.editorconfig +++ b/.editorconfig @@ -2,7 +2,7 @@ end_of_line = lf charset = utf-8 -[*.nix] +[*.{nix,json}] indent_style = space indent_size = 2 trim_trailing_whitespace = true diff --git a/.renovaterc.json b/.renovaterc.json new file mode 100644 index 0000000..b4bf63f --- /dev/null +++ b/.renovaterc.json @@ -0,0 +1,36 @@ +{ + "$schema": "https://docs.renovatebot.com/renovate-schema.json", + "assignees": [ + "jalil" + ], + "automerge": true, + "automergeStrategy": "fast-forward", + "automergeType": "pr", + "commitBodyTable": true, + "dependencyDashboard": true, + "prCreation": "immediate", + "extends": [ + "config:recommended" + ], + "nix": { + "fileMatch": [ + "(^|/)flake\\.nix$" + ], + "commitMessageTopic": "nixpkgs", + "commitMessageExtra": "to {{newValue}}", + "enabled": true + }, + "lockFileMaintenance": { + "enabled": true, + "recreateWhen": "always", + "rebaseStalePrs": true, + "branchTopic": "lock-file-maintenance", + "commitMessageAction": "Lock file maintenance", + "schedule": [ + "* 1-2 * * *" + ] + }, + "automergeSchedule": [ + "* 1-2 * * *" + ] +}