# HG changeset patch # User Tero Koskinen # Date 1640723700 -7200 # Tue Dec 28 22:35:00 2021 +0200 # Node ID 00c5214d6be1aea84261027a99b5ea484ba07f49 # Parent 3bc9da50432a28d91f18b5e020f226dbbadfded9 Add .editorconfig file. Ada files use 3 spaces, Makefile tabs, unix style newlines. diff --git a/.editorconfig b/.editorconfig new file mode 100644 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,16 @@ +# top-most EditorConfig file +root = true + +# Unix-style newlines with a newline ending every file +[*] +end_of_line = lf +insert_final_newline = true + +[*.{ads,adb}] +charset = utf-8 +indent_style = space +indent_size = 3 + +# Tab indentation +[Makefile] +indent_style = tab