From 2dce5706cae0f6270bf0ab14760ad60f617db81f Mon Sep 17 00:00:00 2001 From: paladox Date: Sun, 25 Oct 2015 13:17:27 +0000 Subject: [PATCH 1/8] Update .travis.yml --- .travis.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 381c985..a30b49c 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,4 +1,7 @@ language: node_js node_js: - 0.4 - - 0.6 \ No newline at end of file + - 0.12 + - 0.10 + +sudo: false From d0616fde78471f9256175cae7766d9ddcb876bd0 Mon Sep 17 00:00:00 2001 From: paladox Date: Sun, 25 Oct 2015 13:42:23 +0000 Subject: [PATCH 2/8] Create .jshintrc --- .jshintrc | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 .jshintrc diff --git a/.jshintrc b/.jshintrc new file mode 100644 index 0000000..6fdd051 --- /dev/null +++ b/.jshintrc @@ -0,0 +1,3 @@ +"globals": { + "Path" +] From 7bd8cb6d7be5406a4258870dafa5728641670041 Mon Sep 17 00:00:00 2001 From: paladox Date: Sun, 25 Oct 2015 13:45:55 +0000 Subject: [PATCH 3/8] Update .jshintrc --- .jshintrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.jshintrc b/.jshintrc index 6fdd051..08ff118 100644 --- a/.jshintrc +++ b/.jshintrc @@ -1,3 +1,3 @@ "globals": { "Path" -] +} From 4766431294e08e82759bb3391c84d122d3f3b4f0 Mon Sep 17 00:00:00 2001 From: paladox Date: Sun, 25 Oct 2015 13:46:31 +0000 Subject: [PATCH 4/8] Update .jshintrc --- .jshintrc | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.jshintrc b/.jshintrc index 08ff118..3fcf807 100644 --- a/.jshintrc +++ b/.jshintrc @@ -1,3 +1,5 @@ -"globals": { - "Path" +{ + "globals": { + "Path": false + } } From 5e3920501360616ee01b260eaa129b01ac5df608 Mon Sep 17 00:00:00 2001 From: paladox Date: Sun, 25 Oct 2015 13:47:34 +0000 Subject: [PATCH 5/8] Update .jshintrc --- .jshintrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.jshintrc b/.jshintrc index 3fcf807..ff0ca61 100644 --- a/.jshintrc +++ b/.jshintrc @@ -1,5 +1,5 @@ { "globals": { - "Path": false + "Path": true } } From a9718c80f09f8e73afdb3d551c1938811c2e8a9e Mon Sep 17 00:00:00 2001 From: paladox Date: Sun, 25 Oct 2015 13:50:43 +0000 Subject: [PATCH 6/8] Update fs.test.js --- test/fs.test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/fs.test.js b/test/fs.test.js index 0a1a2b6..9f607de 100644 --- a/test/fs.test.js +++ b/test/fs.test.js @@ -34,7 +34,7 @@ var Test = { async.files([testDir + "/3.txt"]) .unlink() .end(function(err, file) { - Path.exists(file.path, function(exists) { + Path.exists(file.Path, function(exists) { assert.ok(!exists) next() }) From 1b19cd0d0696f2b3410b7a4ba2c6db9fc8cb694f Mon Sep 17 00:00:00 2001 From: paladox Date: Sun, 25 Oct 2015 13:51:54 +0000 Subject: [PATCH 7/8] Update fs.test.js --- test/fs.test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/fs.test.js b/test/fs.test.js index 9f607de..0a1a2b6 100644 --- a/test/fs.test.js +++ b/test/fs.test.js @@ -34,7 +34,7 @@ var Test = { async.files([testDir + "/3.txt"]) .unlink() .end(function(err, file) { - Path.exists(file.Path, function(exists) { + Path.exists(file.path, function(exists) { assert.ok(!exists) next() }) From 57ec09bc49355cca32bb646597397f10505b2a98 Mon Sep 17 00:00:00 2001 From: paladox Date: Sun, 25 Oct 2015 14:01:27 +0000 Subject: [PATCH 8/8] Update fs.test.js --- test/fs.test.js | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/test/fs.test.js b/test/fs.test.js index 0a1a2b6..6192a85 100644 --- a/test/fs.test.js +++ b/test/fs.test.js @@ -34,7 +34,9 @@ var Test = { async.files([testDir + "/3.txt"]) .unlink() .end(function(err, file) { + /* jshint ignore:start */ Path.exists(file.path, function(exists) { + /* jshint ignore:end */ assert.ok(!exists) next() }) @@ -45,7 +47,9 @@ var Test = { async.files([testDir + "/emptydir"]) .rmdir() .end(function(err, file) { + /* jshint ignore:start */ Path.exists(file.path, function(exists) { + /* jshint ignore:end */ assert.ok(!exists) next() }) @@ -57,7 +61,9 @@ var Test = { .rmdir() .end(function(err, file) { assert.ok(err) + /* jshint ignore:start */ Path.exists(file.path, function(exists) { + /* jshint ignore:end */ assert.ok(exists) next() }) @@ -130,14 +136,18 @@ var Test = { async.files([testDir + "/newdir"]) .mkdir(0755) .each(function(file, next) { + /* jshint ignore:start */ Path.exists(file.path, function(exists) { + /* jshint ignore:end */ assert.ok(exists) next() }) }) .rmdir() .each(function(file, next) { + /* jshint ignore:start */ Path.exists(file.path, function(exists) { + /* jshint ignore:end */ assert.ok(!exists) next() })