Skip to content

Commit be1eb21

Browse files
committed
[eslint] enable no-multi-spaces, no-multiple-empty-lines, space-in-parens
1 parent f0756f3 commit be1eb21

File tree

7 files changed

+5
-8
lines changed

7 files changed

+5
-8
lines changed

.eslintrc

+1
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@
4747
"object-curly-spacing": ["error", "always"],
4848
"operator-linebreak": ["error", "before"],
4949
"semi-style": ["error", "last"],
50+
"space-in-parens": ["error", "never"],
5051
"space-infix-ops": "error",
5152
"space-unary-ops": ["error", {
5253
"words": false,

bin/tape

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ if (typeof opts.require === 'string') {
2525
}
2626

2727
opts.require.forEach(function (module) {
28-
var options = { basedir: cwd, extensions: Object.keys(require.extensions) };
28+
var options = { basedir: cwd, extensions: Object.keys(require.extensions) };
2929
if (module) {
3030
/* This check ensures we ignore `-r ""`, trailing `-r`, or
3131
* other silly things the user might (inadvertently) be doing.

test/async-await/async-bug.js

-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@ test('async-error', async function myTest(t) {
2424
t.end();
2525
});
2626

27-
2827
function sleep(ms) {
2928
return new Promise((resolve) => {
3029
setTimeout(resolve, ms);

test/comment.js

-1
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,6 @@ tap.test('null argument', function (assert) {
6464
});
6565
});
6666

67-
6867
// Exploratory test, how is whitespace treated?
6968
tap.test('whitespace', function (assert) {
7069
assert.plan(1);

test/create_multiple_streams.js

+2-3
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ tape.test('createMultipleStreams', function (tt) {
1313

1414
th('test one', function (tht) {
1515
tht.plan(1);
16-
setTimeout( function () {
16+
setTimeout(function () {
1717
tht.pass();
1818
testOneComplete = true;
1919
}, 100);
@@ -26,8 +26,7 @@ tape.test('createMultipleStreams', function (tt) {
2626

2727
th.onFinish(function () {
2828
tt.equal(th._results.count, 2, 'harness test ran');
29-
tt.equal(th._results.fail, 0, "harness test didn't fail");
29+
tt.equal(th._results.fail, 0, "harness test didn't fail");
3030
});
3131
});
3232

33-

test/exit.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ tap.test('exit ok', function (t) {
2727
'',
2828
'# ok',
2929
'', // yes, these double-blank-lines at the end are required.
30-
'' // if you can figure out how to remove them, please do!
30+
'' // if you can figure out how to remove them, please do!
3131
].join('\n'));
3232
};
3333

test/nested2.js

-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ test(function (t) {
1212
});
1313
});
1414

15-
1615
t.test('teardown', function (st) {
1716
st.end();
1817
});

0 commit comments

Comments
 (0)