Skip to content

Commit

Permalink
Linter update
Browse files Browse the repository at this point in the history
  • Loading branch information
tschaub committed Jun 11, 2017
1 parent 85396c2 commit 79f57fb
Show file tree
Hide file tree
Showing 31 changed files with 361 additions and 767 deletions.
15 changes: 0 additions & 15 deletions .editorconfig

This file was deleted.

3 changes: 0 additions & 3 deletions .eslintrc

This file was deleted.

2 changes: 1 addition & 1 deletion appveyor.yml
@@ -1,6 +1,6 @@
environment:
matrix:
- nodejs_version: "4"
- nodejs_version: "8"

install:
- ps: Install-Product node $env:nodejs_version
Expand Down
2 changes: 0 additions & 2 deletions benchmarks/read-integration-mock.js
Expand Up @@ -3,7 +3,6 @@ var fs = require('fs');

var mock = require('..');


/**
* Timed test. This includes the mock setup and teardown as part of the overall
* test time.
Expand All @@ -21,5 +20,4 @@ exports.test = function(done) {
mock.restore();
done();
});

};
1 change: 0 additions & 1 deletion benchmarks/read-integration-real.js
Expand Up @@ -6,7 +6,6 @@ var rimraf = require('rimraf');

var tmpPath = '.tmp';


/**
* Timed test. This includes the setup and teardown as part of the overall
* test time.
Expand Down
3 changes: 0 additions & 3 deletions benchmarks/read-mock.js
Expand Up @@ -3,7 +3,6 @@ var fs = require('fs');

var mock = require('..');


/**
* Test setup. Not timed.
*/
Expand All @@ -13,7 +12,6 @@ exports.beforeEach = function() {
});
};


/**
* Timed test.
* @param {function(Error)} done Callback.
Expand All @@ -26,7 +24,6 @@ exports.test = function(done) {
});
};


/**
* Test teardown. Not timed.
*/
Expand Down
3 changes: 0 additions & 3 deletions benchmarks/read-real.js
Expand Up @@ -6,7 +6,6 @@ var rimraf = require('rimraf');

var tmpPath = '.tmp';


/**
* Test setup. Not timed.
* @param {function(Error)} done Callback.
Expand All @@ -20,7 +19,6 @@ exports.beforeEach = function(done) {
});
};


/**
* Timed test.
* @param {function(Error)} done Callback.
Expand All @@ -33,7 +31,6 @@ exports.test = function(done) {
});
};


/**
* Test teardown. Not timed.
* @param {function(Error)} done Callback.
Expand Down
2 changes: 0 additions & 2 deletions benchmarks/write-integration-mock.js
Expand Up @@ -3,7 +3,6 @@ var fs = require('fs');

var mock = require('..');


/**
* Timed test. This includes the mock setup and teardown as part of the overall
* test time.
Expand All @@ -18,5 +17,4 @@ exports.test = function(done) {
mock.restore();
done();
});

};
1 change: 0 additions & 1 deletion benchmarks/write-integration-real.js
Expand Up @@ -6,7 +6,6 @@ var rimraf = require('rimraf');

var tmpPath = '.tmp';


/**
* Timed test. This includes the setup and teardown as part of the overall
* test time.
Expand Down
3 changes: 0 additions & 3 deletions benchmarks/write-mock.js
Expand Up @@ -2,15 +2,13 @@ var fs = require('fs');

var mock = require('..');


/**
* Test setup. Not timed.
*/
exports.beforeEach = function() {
mock();
};


/**
* Timed test.
* @param {function(Error)} done Callback.
Expand All @@ -19,7 +17,6 @@ exports.test = function(done) {
fs.writeFile('foo-mock.txt', 'foo', done);
};


/**
* Test teardown. Not timed.
*/
Expand Down
3 changes: 0 additions & 3 deletions benchmarks/write-real.js
Expand Up @@ -5,7 +5,6 @@ var rimraf = require('rimraf');

var tmpPath = '.tmp';


/**
* Test setup. Not timed.
* @param {function(Error)} done Callback.
Expand All @@ -14,7 +13,6 @@ exports.beforeEach = function(done) {
fs.mkdir(tmpPath, done);
};


/**
* Timed test.
* @param {function(Error)} done Callback.
Expand All @@ -23,7 +21,6 @@ exports.test = function(done) {
fs.writeFile(path.join(tmpPath, 'foo-real.txt'), 'foo', done);
};


/**
* Test teardown. Not timed.
* @param {function(Error)} done Callback.
Expand Down

0 comments on commit 79f57fb

Please sign in to comment.