From 5b6c992043cc245520a02f1a46fc37c4fc7e1b2a Mon Sep 17 00:00:00 2001 From: creations Date: Sat, 21 Dec 2024 21:03:32 -0500 Subject: [PATCH] editor configs? --- .editorconfig | 12 ++++++++++++ .gitattributes | 1 + .gitignore | 2 ++ 3 files changed, 15 insertions(+) create mode 100644 .editorconfig create mode 100644 .gitattributes create mode 100644 .gitignore diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..980ef21 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,12 @@ +# EditorConfig is awesome: https://EditorConfig.org + +# top-most EditorConfig file +root = true + +[*] +indent_style = tab +indent_size = 4 +end_of_line = lf +charset = utf-8 +trim_trailing_whitespace = true +insert_final_newline = true diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..6313b56 --- /dev/null +++ b/.gitattributes @@ -0,0 +1 @@ +* text=auto eol=lf diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..fd53c03 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +/node_modules +bun.lockb