From f27f386332048bb11d5a857d8a0e2957ad738f59 Mon Sep 17 00:00:00 2001 From: Nicolas Varrot Date: Fri, 13 Feb 2026 03:10:47 +0000 Subject: [PATCH] chore: add .editorconfig and .nvmrc for consistent DX --- .editorconfig | 21 +++++++++++++++++++++ .nvmrc | 1 + 2 files changed, 22 insertions(+) create mode 100644 .editorconfig create mode 100644 .nvmrc diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..6fd0fd2 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,21 @@ +# EditorConfig — consistent formatting across editors +# https://editorconfig.org + +root = true + +[*] +charset = utf-8 +end_of_line = lf +insert_final_newline = true +trim_trailing_whitespace = true +indent_style = space +indent_size = 2 + +[*.md] +trim_trailing_whitespace = false + +[*.{yml,yaml}] +indent_size = 2 + +[Makefile] +indent_style = tab diff --git a/.nvmrc b/.nvmrc new file mode 100644 index 0000000..2bd5a0a --- /dev/null +++ b/.nvmrc @@ -0,0 +1 @@ +22