Skip to content

Commit 75c0c3a

Browse files
committed
[eslint] enable func-style
1 parent 87deb68 commit 75c0c3a

File tree

4 files changed

+11
-9
lines changed

4 files changed

+11
-9
lines changed

.eslintrc

+2-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"rules": {
1313
"array-bracket-spacing": "off",
1414
"complexity": "off",
15-
"func-style": "warn",
15+
"func-style": ["error", "declaration"],
1616
"max-lines-per-function": "warn",
1717
"max-lines": "warn",
1818
"max-statements-per-line": [2, { "max": 2 }],
@@ -107,6 +107,7 @@
107107
"allowKeywords": true,
108108
"allowPattern": "throws"
109109
}],
110+
"func-style": "off",
110111
"id-length": "off",
111112
"max-len": "off",
112113
"max-lines-per-function": "off",

index.js

+4-4
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,10 @@ module.exports = (function () {
2323
return harness;
2424
}
2525

26-
var lazyLoad = function () {
26+
function lazyLoad() {
2727
// eslint-disable-next-line no-invalid-this
2828
return getHarness().apply(this, arguments);
29-
};
29+
}
3030

3131
lazyLoad.only = function () {
3232
return getHarness().only.apply(this, arguments);
@@ -61,7 +61,7 @@ function createHarness(conf_) {
6161
results.once('done', function () { results.close(); });
6262
}
6363

64-
var test = function (name, conf, cb) {
64+
function test(name, conf, cb) {
6565
var t = new Test(name, conf, cb);
6666
test._tests.push(t);
6767

@@ -76,7 +76,7 @@ function createHarness(conf_) {
7676

7777
results.push(t);
7878
return t;
79-
};
79+
}
8080
test._results = results;
8181

8282
test._tests = [];

lib/results.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ Results.prototype.only = function (t) {
174174

175175
Results.prototype._watch = function (t) {
176176
var self = this;
177-
var write = function (s) { self._stream.queue(s); };
177+
function write(s) { self._stream.queue(s); }
178178
t.once('prerun', function () {
179179
var premsg = '';
180180
if (t._skip) {
@@ -208,7 +208,7 @@ Results.prototype.close = function () {
208208
var self = this;
209209
if (self.closed) { self._stream.emit('error', new Error('ALREADY CLOSED')); }
210210
self.closed = true;
211-
var write = function (s) { self._stream.queue(s); };
211+
function write(s) { self._stream.queue(s); }
212212

213213
write('\n1..' + self.count + '\n');
214214
write('# tests ' + self.count + '\n');

lib/test.js

+3-2
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ var safeSetTimeout = setTimeout;
2323
var safeClearTimeout = clearTimeout;
2424

2525
// eslint-disable-next-line no-unused-vars
26-
var getTestArgs = function (name_, opts_, cb_) {
26+
function getTestArgs(name_, opts_, cb_) {
2727
var name = '(anonymous)';
2828
var opts = {};
2929
var cb;
@@ -44,7 +44,7 @@ var getTestArgs = function (name_, opts_, cb_) {
4444
opts: opts,
4545
cb: cb
4646
};
47-
};
47+
}
4848

4949
function Test(name_, opts_, cb_) {
5050
if (!(this instanceof Test)) {
@@ -387,6 +387,7 @@ Test.prototype.skip = function (msg, extra) {
387387
});
388388
};
389389

390+
// eslint-disable-next-line func-style
390391
var tapeAssert = function assert(value, msg, extra) {
391392
this._assert(value, {
392393
message: defined(msg, 'should be truthy'),

0 commit comments

Comments
 (0)