From cbe8f5f8e8f96ad56e0e2048c00f614ad0231a66 Mon Sep 17 00:00:00 2001 From: emma Date: Wed, 27 Dec 2023 15:38:38 -0700 Subject: [PATCH] .editorconfig: added editor configuration; CONTRIBUTING: changed tabstop requirement to 4 --- .editorconfig | 8 ++++++++ CONTRIBUTING | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..f78e6ef --- /dev/null +++ b/.editorconfig @@ -0,0 +1,8 @@ +root = true + +[*] +charset = utf8 +end_of_line = lf +indent_style = tab +indent_size = 4 +insert_final_newline = true diff --git a/CONTRIBUTING b/CONTRIBUTING index 9947be0..4f3ac48 100644 --- a/CONTRIBUTING +++ b/CONTRIBUTING @@ -91,7 +91,7 @@ notice: */ When writing code, make sure lines never exceed 80 characters in width when -using two-character-wide tabs. +using four-character-wide indentation steps. For usage text and help messages, please do not implement a -h option. Just print usage information when any erroneous option is specified. Follow the