From b33913cd7ae11ace6f90971034bec07ea8d3e60a Mon Sep 17 00:00:00 2001 From: drjones Date: Wed, 20 May 2026 17:03:50 -0700 Subject: [PATCH] Add stewardship readiness asset: .editorconfig --- .editorconfig | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..e6275e2 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,17 @@ +# EditorConfig is awesome: https://editorconfig.org + +root = true + +[*] +charset = utf-8 +end_of_line = lf +insert_final_newline = true +indent_style = space +indent_size = 2 +trim_trailing_whitespace = true + +[*.{md,markdown}] +trim_trailing_whitespace = false + +[Makefile] +indent_style = tab