From 71655d55eed0fb29f3d0799e4540a6fbb897e29c Mon Sep 17 00:00:00 2001 From: Ad Schellevis Date: Thu, 12 May 2016 19:04:08 +0200 Subject: [PATCH] add .editorconfig, closes https://github.com/opnsense/core/issues/932 --- .editorconfig | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 000000000..fce0b66f7 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,17 @@ +root = true + +[*.py] +indent_style = space +indent_size = 4 +end_of_line = lf +charset = utf-8 +trim_trailing_whitespace = true +insert_final_newline = true + +[*.{php,inc,volt}] +indent_style = space +indent_size = 4 +end_of_line = lf +charset = utf-8 +trim_trailing_whitespace = true +insert_final_newline = true