diff options
-rw-r--r-- | .editorconfig | 14 | ||||
-rwxr-xr-x | bin/build-release.sh | 1 |
2 files changed, 15 insertions, 0 deletions
diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..89e9e06 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,14 @@ +# Editor configuration normalization +# @see http://editorconfig.org/ + +# This is the top-most .editorconfig file; do not search in parent directories. +root = true + +# All files. +[*] +end_of_line = LF +indent_style = space +indent_size = 4 +charset = utf-8 +trim_trailing_whitespace = true +insert_final_newline = true diff --git a/bin/build-release.sh b/bin/build-release.sh index 35023ba..0a981b5 100755 --- a/bin/build-release.sh +++ b/bin/build-release.sh @@ -50,6 +50,7 @@ rm -rf "$TARGET/.git" rm "$TARGET/.coveralls.yml" rm "$TARGET/.travis.yml" rm "$TARGET/.gitignore" +rm "$TARGET/.editorconfig" rm "$TARGET/composer.phar" tar --owner 0 --group 0 -cvzf "$TARGET.tar.gz" "$TARGET" rm -rf "$TARGET" |