From 824531939f93ee96f3dccae7115c30d45fbab581 Mon Sep 17 00:00:00 2001 From: Christoph Heiss Date: Sat, 4 May 2024 17:33:50 +0200 Subject: [PATCH 1/2] fix(header): correct case in GitHub link title Signed-off-by: Christoph Heiss --- src/components/Header.astro | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/Header.astro b/src/components/Header.astro index 25e343e..b64b5be 100644 --- a/src/components/Header.astro +++ b/src/components/Header.astro @@ -24,7 +24,7 @@ const translation = useTranslations(lang);
  • Contribute
  • -->
  • {translation("header.community")}
  • -
  • Github
  • +
  • GitHub
  • From 5215573ef26ca801821f5ff72f82f42bc40b43b3 Mon Sep 17 00:00:00 2001 From: Christoph Heiss Date: Sat, 4 May 2024 17:35:44 +0200 Subject: [PATCH 2/2] chore: add .editorconfig Signed-off-by: Christoph Heiss --- .editorconfig | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..469b0a3 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,12 @@ +root = true + +[*] +end_of_line = lf +insert_final_newline = true +charset = utf-8 +indent_style = tab +indent_size = 4 +trim_trailing_whitespace = true + +[*.md] +trim_trailing_whitespace = false