Skip to content

Commit 98b9623

Browse files
committed
[eslint] enable func-style
1 parent f8a8a7f commit 98b9623

File tree

4 files changed

+13
-10
lines changed

4 files changed

+13
-10
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
"no-magic-numbers": "off",
1717
"max-lines": "warn",
1818
"max-lines-per-function": "warn",
@@ -105,6 +105,7 @@
105105
"allowKeywords": true,
106106
"allowPattern": "throws"
107107
}],
108+
"func-style": "off",
108109
"id-length": "off",
109110
"max-len": "off",
110111
"max-lines-per-function": "off",

index.js

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

27-
var lazyLoad = function () {
27+
function lazyLoad() {
2828
// eslint-disable-next-line no-invalid-this
2929
return getHarness().apply(this, arguments);
30-
};
30+
}
3131

3232
lazyLoad.wait = function () {
3333
wait = true;
@@ -72,7 +72,7 @@ function createHarness(conf_) {
7272
results.once('done', function () { results.close(); });
7373
}
7474

75-
var test = function (name, conf, cb) {
75+
function test(name, conf, cb) {
7676
var t = new Test(name, conf, cb);
7777
test._tests.push(t);
7878

@@ -87,7 +87,7 @@ function createHarness(conf_) {
8787

8888
results.push(t);
8989
return t;
90-
};
90+
}
9191
test._results = results;
9292

9393
test._tests = [];

lib/results.js

+4-2
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,8 @@ Results.prototype.only = function (t) {
180180

181181
Results.prototype._watch = function (t) {
182182
var self = this;
183-
var write = function (s) { self._stream.queue(s); };
183+
function write(s) { self._stream.queue(s); }
184+
184185
t.once('prerun', function () {
185186
var premsg = '';
186187
if (t._skip) {
@@ -214,7 +215,8 @@ Results.prototype.close = function () {
214215
var self = this;
215216
if (self.closed) { self._stream.emit('error', new Error('ALREADY CLOSED')); }
216217
self.closed = true;
217-
var write = function (s) { self._stream.queue(s); };
218+
219+
function write(s) { self._stream.queue(s); }
218220

219221
write('\n1..' + self.count + '\n');
220222
write('# tests ' + self.count + '\n');

lib/test.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ var safeSetTimeout = setTimeout;
3333
var safeClearTimeout = clearTimeout;
3434

3535
// eslint-disable-next-line no-unused-vars
36-
var getTestArgs = function (name_, opts_, cb_) {
36+
function getTestArgs(name_, opts_, cb_) {
3737
var name = '(anonymous)';
3838
var opts = {};
3939
var cb;
@@ -54,7 +54,7 @@ var getTestArgs = function (name_, opts_, cb_) {
5454
opts: opts,
5555
cb: cb
5656
};
57-
};
57+
}
5858

5959
function Test(name_, opts_, cb_) {
6060
if (!(this instanceof Test)) {
@@ -427,7 +427,7 @@ Test.prototype.skip = function skip(msg, extra) {
427427
});
428428
};
429429

430-
var testAssert = function assert(value, msg, extra) {
430+
var testAssert = function assert(value, msg, extra) { // eslint-disable-line func-style
431431
this._assert(value, {
432432
message: defined(msg, 'should be truthy'),
433433
operator: 'ok',

0 commit comments

Comments
 (0)