diff options
author | Roman Reiss <me@silverwind.io> | 2015-08-29 09:41:27 +0200 |
---|---|---|
committer | Roman Reiss <me@silverwind.io> | 2015-08-29 20:00:10 +0200 |
commit | 83c2c3b67607e6dc268e24ff390bf8a2344d1ec1 (patch) | |
tree | b01b3f61c2a31c4c0fc2f111bcf84b9064d35b75 /.eslintignore | |
parent | 4c5fc3b1d4f1091135b5340c220d28ab4258a1df (diff) | |
download | node-new-83c2c3b67607e6dc268e24ff390bf8a2344d1ec1.tar.gz |
test: lint and refactor to avoid autocrlf issue
The test was failing after adding 'use strict' because the windows CI
uses the autocrlf option of git which converts \r into \r\n on checkout.
Refactored the test to not read itself anymore and create a temp file on
the fly instead to avoid this line-ending issue.
PR-URL: https://github.com/nodejs/node/pull/2494
Reviewed-By: Joao Reis <reis@janeasystems.com>
Diffstat (limited to '.eslintignore')
-rw-r--r-- | .eslintignore | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/.eslintignore b/.eslintignore index ef029bad5e..6f1caaa873 100644 --- a/.eslintignore +++ b/.eslintignore @@ -2,6 +2,5 @@ lib/punycode.js test/addons/doc-*/ test/fixtures test/**/node_modules -test/parallel/test-fs-non-number-arguments-throw.js test/disabled test/tmp*/ |