diff options
author | Robin Jarry <robin@jarry.cc> | 2022-01-20 21:04:15 +0100 |
---|---|---|
committer | Robin Jarry <robin@jarry.cc> | 2022-01-20 21:43:47 +0100 |
commit | 561f8c19af0859b461146fd9f8f2af22574c0c4d (patch) | |
tree | f3b4840dd3ade54c48e23a6d285329e1b9adc37c | |
parent | 662a82e7db47651007a2f9e3a126637801c6f2ee (diff) | |
download | aerc-561f8c19af0859b461146fd9f8f2af22574c0c4d.tar.gz |
Add .editorconfig file
Most of the go source files
Signed-off-by: Robin Jarry <robin@jarry.cc>
-rw-r--r-- | .editorconfig | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 00000000..a250a2da --- /dev/null +++ b/.editorconfig @@ -0,0 +1,20 @@ +# -*- mode: ini; -*- +# ex: ft=dosini + +root = true + +[*] +end_of_line = lf +insert_final_newline = true +charset = utf-8 + +[**.go] +indent_style = tab +max_line_length = 100 +tab_width = 4 + +[Makefile] +indent_style = tab + +[**.scd] +indent_style = tab |