From 5eacf05adb5a1c6efe7205b766953c537bbab064 Mon Sep 17 00:00:00 2001 From: Jacob Rigby Date: Wed, 23 Apr 2014 15:50:28 -0500 Subject: [PATCH] Fix eol issues Some files don't contain a line separator ('\n') at the end. Add the missing eol. In POSIX, all lines of text should end with a newline character by definition. See http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/V1_chap03.html section 3.397 for more. See https://gist.github.com/jacknagel/1020172 for a gist of the issue. --- Android.gitignore | 2 +- CodeIgniter.gitignore | 2 +- Composer.gitignore | 2 +- Symfony2.gitignore | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Android.gitignore b/Android.gitignore index 6b6f0a93..3a36c6e7 100644 --- a/Android.gitignore +++ b/Android.gitignore @@ -23,4 +23,4 @@ local.properties proguard/ #Log Files -*.log \ No newline at end of file +*.log diff --git a/CodeIgniter.gitignore b/CodeIgniter.gitignore index ca0e37ee..846b8c54 100644 --- a/CodeIgniter.gitignore +++ b/CodeIgniter.gitignore @@ -3,4 +3,4 @@ */logs/!index.html */cache/* */cache/!index.html -*/cache/!.htaccess \ No newline at end of file +*/cache/!.htaccess diff --git a/Composer.gitignore b/Composer.gitignore index aa5997f4..3a693c92 100644 --- a/Composer.gitignore +++ b/Composer.gitignore @@ -3,4 +3,4 @@ vendor/ # Commit your application's lock file http://getcomposer.org/doc/01-basic-usage.md#composer-lock-the-lock-file # You may choose to ignore a library lock file http://getcomposer.org/doc/02-libraries.md#lock-file -# composer.lock \ No newline at end of file +# composer.lock diff --git a/Symfony2.gitignore b/Symfony2.gitignore index f4a95cb4..f5465e10 100644 --- a/Symfony2.gitignore +++ b/Symfony2.gitignore @@ -13,4 +13,4 @@ app/config/parameters.ini app/config/parameters.yml # Composer -composer.phar \ No newline at end of file +composer.phar