From e18503beb0f9b2aef4ef7553ce75faec8418b237 Mon Sep 17 00:00:00 2001 From: Florian Klink Date: Wed, 19 Mar 2025 11:01:28 +0000 Subject: [PATCH] feat(editorconfig): add global editorconfig We had some files with windows line endings (see cl/30139). They're hopefully gone now, if not, make sure editors honoring editorconfig will convert things. Change-Id: I3915f8cd7f4a9e98350f654d03060d7a7e98ea8e Reviewed-on: https://cl.snix.dev/c/snix/+/30140 Reviewed-by: Paul Meyer Tested-by: besadii Autosubmit: Florian Klink --- .editorconfig | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 000000000..6a840f419 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,10 @@ +# EditorConfig is awesome: https://editorconfig.org + +# top-most EditorConfig file +root = true + +# Unix-style newlines with a newline ending every file +[*] +end_of_line = lf +insert_final_newline = true +trim_trailing_whitespace = true