From 6dc6c499450e32039eec2646cb4e1df017495b77 Mon Sep 17 00:00:00 2001 From: Nathan Lynch Date: Wed, 24 Jul 2024 14:11:10 -0500 Subject: [PATCH] Add .editorconfig librtas basically follows Linux kernel coding style. Copy the relevant .editorconfig directives from that project. https://editorconfig.org/ Signed-off-by: Nathan Lynch --- .editorconfig | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..3493bcf --- /dev/null +++ b/.editorconfig @@ -0,0 +1,8 @@ +root = true + +[{*.{c,h,},Makefile,Makefile.*}] +charset = utf-8 +end_of_line = lf +insert_final_newline = true +indent_style = tab +indent_size = 8