From fb3ac3aef52d4ab63ab302443185be73eca4121e Mon Sep 17 00:00:00 2001 From: =?utf8?q?Andr=C3=A9as=20Lundgren?= Date: Wed, 28 Sep 2016 05:38:34 +0200 Subject: [PATCH] Update .gitignore and add .editorconfig (#21) * Update .gitignore with compiled files and some OS specific files * Remove all files from templates_c (exept keepme file). * Remove some system files from Windows, Linux and macOS. * Add an .editorconfig file Makes it easier to contribute to the project --- .editorconfig | 11 +++++++++++ .gitignore | 6 ++++-- 2 files changed, 15 insertions(+), 2 deletions(-) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 00000000..697c76fe --- /dev/null +++ b/.editorconfig @@ -0,0 +1,11 @@ +# http://editorconfig.org + +root = true + +[*] +charset = utf-8 +indent_style = space +indent_size = 2 +end_of_line = lf +trim_trailing_whitespace = false +insert_new_final_line = false diff --git a/.gitignore b/.gitignore index 8f4d2699..9bfa047e 100644 --- a/.gitignore +++ b/.gitignore @@ -1,7 +1,9 @@ config.php -WEB-INF/templates_c/*.php -WEB-INF/templates_c/*.png +WEB-INF/templates_c/*.* WEB-INF/lib/tcpdf/ nbproject/ upload/ .vscode/ +Thumbs.db +*.DS_Store +*~ -- 2.20.1