From 373d3eac338a830267de214f1dced790f70ef606 Mon Sep 17 00:00:00 2001 From: Daniel Opitz Date: Fri, 7 Jul 2017 00:32:57 +0200 Subject: [PATCH] add editorconfig and gitattributes files --- .editorconfig | 8 ++++++++ .gitattributes | 15 +++++++++++++++ 2 files changed, 23 insertions(+) create mode 100644 .editorconfig create mode 100644 .gitattributes diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..5ef0cff --- /dev/null +++ b/.editorconfig @@ -0,0 +1,8 @@ +# EditorConfig is awesome: http://EditorConfig.org +root = true + +[*] +end_of_line = lf +indent_style = space +indent_size = 4 +trim_trailing_whitespace = true \ No newline at end of file diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..bfbeef7 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,15 @@ +# Enforce Unix newlines +* text=lf + +# Exclude unused files +# see: https://redd.it/2jzp6k +/tests export-ignore +/.coveralls.yml export-ignore +/.editorconfig export-ignore +/.gitattributes export-ignore +/.gitignore export-ignore +/.travis.yml export-ignore +/CONTRIBUTING.md export-ignore +/README.md export-ignore +/phpcs.xml export-ignore +/phpunit.xml export-ignore \ No newline at end of file