diff .editorconfig @ 27334:640ee0d531d0 stable

add EditorConfig for default file encoding and indentation * .editorconfig: New source configuration file. Thanks to Andrew Janke for the initial patch.
author Mike Miller <mtmiller@octave.org>
date Wed, 07 Aug 2019 14:05:41 -0700
parents
children
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/.editorconfig	Wed Aug 07 14:05:41 2019 -0700
@@ -0,0 +1,12 @@
+root = true
+
+[*]
+charset = utf-8
+end_of_line = lf
+indent_size = 2
+indent_style = space
+insert_final_newline = true
+
+[*.{am,mk}]
+indent_size = tab
+indent_style = tab