From 325eb4f4ca44918f74e9d218519920e7c460a25f Mon Sep 17 00:00:00 2001 From: Waleed Khan Date: Sun, 20 Feb 2022 21:17:36 -0800 Subject: [PATCH] Add .editorconfig This file sets formatting defaults for editors. See https://editorconfig.org/. --- .editorconfig | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 000000000..bf1ef9cc2 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,9 @@ +root = true + +[*] +end_of_line = lf +trim_trailing_whitespace = true + +[*.rs] +indent_style = space +indent_size = 4