From 3f2daf292c2115c7df2ed3d1db7b9ba5c8435f3a Mon Sep 17 00:00:00 2001 From: Vitor Mattos <1079143+vitormattos@users.noreply.github.com> Date: Thu, 28 Aug 2025 16:10:08 -0300 Subject: [PATCH] feat: implement dotfiles - .editorconfig: make possible some ide to be automatic configured using the project patterns - .github/dependabot.yml: make possible update dependencies when this is updated Signed-off-by: Vitor Mattos <1079143+vitormattos@users.noreply.github.com> --- .editorconfig | 22 ++++++++++++++++++++++ .github/dependabot.yml | 12 ++++++++++++ 2 files changed, 34 insertions(+) create mode 100644 .editorconfig create mode 100644 .github/dependabot.yml diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..51b6f0c --- /dev/null +++ b/.editorconfig @@ -0,0 +1,22 @@ +# https://editorconfig.org + +root = true + +[*] +charset = utf-8 +end_of_line = lf +indent_size = 4 +indent_style = space +insert_final_newline = true +trim_trailing_whitespace = true + +[*.md] +trim_trailing_whitespace = false + +[*.json] +indent_size = 2 +indent_style = space + +[*.xml] +indent_size = 2 +indent_style = space diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..ffbec11 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,12 @@ +version: 2 +updates: + # Maintain dependencies for Composer + - package-ecosystem: "composer" + directory: "/" + schedule: + interval: "daily" + + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: daily