Skip to content

Commit 2151e06

Browse files
committed
[eslint] fix indentation
1 parent a9ae3c2 commit 2151e06

File tree

131 files changed

+5861
-5862
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

131 files changed

+5861
-5862
lines changed

.eslintrc

-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@
1313
"array-bracket-spacing": "off",
1414
"complexity": "off",
1515
"func-style": "warn",
16-
"indent": ["error", 4],
1716
"no-magic-numbers": "off",
1817
"max-lines": "warn",
1918
"max-lines-per-function": "warn",

bin/import-or-require.js

+5-5
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@ const getPackageType = require('get-package-type');
66

77
// eslint-disable-next-line consistent-return
88
module.exports = function importOrRequire(file) {
9-
const ext = extnamePath(file);
9+
const ext = extnamePath(file);
1010

11-
if (ext === '.mjs' || (ext === '.js' && getPackageType.sync(file) === 'module')) {
12-
return import(pathToFileURL(file).href);
13-
}
14-
require(file);
11+
if (ext === '.mjs' || (ext === '.js' && getPackageType.sync(file) === 'module')) {
12+
return import(pathToFileURL(file).href);
13+
}
14+
require(file);
1515
};

bin/tape

+49-49
Original file line numberDiff line numberDiff line change
@@ -6,95 +6,95 @@ var parseOpts = require('minimist');
66
var objectKeys = require('object-keys');
77

88
var opts = parseOpts(process.argv.slice(2), {
9-
alias: { r: 'require', i: 'ignore' },
10-
string: ['require', 'ignore'],
11-
boolean: ['only'],
12-
default: { r: [], i: null, only: null }
9+
alias: { r: 'require', i: 'ignore' },
10+
string: ['require', 'ignore'],
11+
boolean: ['only'],
12+
default: { r: [], i: null, only: null }
1313
});
1414

1515
if (typeof opts.only === 'boolean') {
16-
process.env.NODE_TAPE_NO_ONLY_TEST = !opts.only;
16+
process.env.NODE_TAPE_NO_ONLY_TEST = !opts.only;
1717
}
1818

1919
var cwd = process.cwd();
2020

2121
if (typeof opts.require === 'string') {
22-
opts.require = [opts.require];
22+
opts.require = [opts.require];
2323
}
2424

2525
var resolveModule;
2626
opts.require.forEach(function (module) {
27-
var options = { basedir: cwd, extensions: objectKeys(require.extensions) };
28-
if (module) {
29-
if (!resolveModule) { resolveModule = require('resolve').sync; }
30-
// This check ensures we ignore `-r ""`, trailing `-r`, or other silly things the user might (inadvertently) be doing.
31-
require(resolveModule(module, options));
32-
}
27+
var options = { basedir: cwd, extensions: objectKeys(require.extensions) };
28+
if (module) {
29+
if (!resolveModule) { resolveModule = require('resolve').sync; }
30+
// This check ensures we ignore `-r ""`, trailing `-r`, or other silly things the user might (inadvertently) be doing.
31+
require(resolveModule(module, options));
32+
}
3333
});
3434

3535
var resolvePath = require('path').resolve;
3636
var requireResolve = require.resolve;
3737

3838
var matcher;
3939
if (typeof opts.ignore === 'string') {
40-
var readFileSync = require('fs').readFileSync;
41-
try {
42-
var ignoreStr = readFileSync(resolvePath(cwd, opts.ignore || '.gitignore'), 'utf-8');
43-
} catch (e) {
44-
console.error(e.message);
45-
process.exit(2);
46-
}
47-
var ignore = require('dotignore');
48-
matcher = ignore.createMatcher(ignoreStr);
40+
var readFileSync = require('fs').readFileSync;
41+
try {
42+
var ignoreStr = readFileSync(resolvePath(cwd, opts.ignore || '.gitignore'), 'utf-8');
43+
} catch (e) {
44+
console.error(e.message);
45+
process.exit(2);
46+
}
47+
var ignore = require('dotignore');
48+
matcher = ignore.createMatcher(ignoreStr);
4949
}
5050

5151
var glob = require('glob');
5252

5353
var files = opts._.reduce(function (result, arg) {
54-
if (glob.hasMagic(arg)) {
55-
// If glob does not match, `files` will be an empty array.
56-
// Note: `glob.sync` may throw an error and crash the node process.
57-
var globFiles = glob.sync(arg);
58-
59-
if (!Array.isArray(globFiles)) {
60-
throw new TypeError('unknown error: glob.sync("' + arg + '") did not return an array or throw. Please report this.');
61-
}
62-
63-
return result.concat(globFiles);
64-
}
65-
return result.concat(arg);
54+
if (glob.hasMagic(arg)) {
55+
// If glob does not match, `files` will be an empty array.
56+
// Note: `glob.sync` may throw an error and crash the node process.
57+
var globFiles = glob.sync(arg);
58+
59+
if (!Array.isArray(globFiles)) {
60+
throw new TypeError('unknown error: glob.sync("' + arg + '") did not return an array or throw. Please report this.');
61+
}
62+
63+
return result.concat(globFiles);
64+
}
65+
return result.concat(arg);
6666
}, []).filter(function (file) {
67-
return !matcher || !matcher.shouldIgnore(file);
67+
return !matcher || !matcher.shouldIgnore(file);
6868
}).map(function (file) {
69-
return requireResolve(resolvePath(cwd, file));
69+
return requireResolve(resolvePath(cwd, file));
7070
});
7171

7272
var hasImport = require('has-dynamic-import');
7373

7474
hasImport().then(function (hasSupport) {
75-
// the nextTick callback gets called outside the promise chain, avoiding
76-
// promises and unhandled rejections when only loading commonjs files
77-
process.nextTick(importFiles, hasSupport);
75+
// the nextTick callback gets called outside the promise chain, avoiding
76+
// promises and unhandled rejections when only loading commonjs files
77+
process.nextTick(importFiles, hasSupport);
7878
});
7979

8080
var tape = require('../');
8181

8282
function importFiles(hasSupport) {
83-
if (!hasSupport) {
84-
return files.forEach(function (x) { require(x); });
85-
}
83+
if (!hasSupport) {
84+
return files.forEach(function (x) { require(x); });
85+
}
8686

87-
var importOrRequire = require('./import-or-require');
87+
var importOrRequire = require('./import-or-require');
8888

89-
tape.wait();
89+
tape.wait();
9090

91-
var filesPromise = files.reduce(function (promise, file) {
92-
return promise ? promise.then(function () {
93-
return importOrRequire(file);
94-
}) : importOrRequire(file);
95-
}, null);
91+
var filesPromise = files.reduce(function (promise, file) {
92+
return promise ? promise.then(function () {
93+
return importOrRequire(file);
94+
}) : importOrRequire(file);
95+
}, null);
9696

97-
return filesPromise ? filesPromise.then(function () { tape.run(); }) : tape.run();
97+
return filesPromise ? filesPromise.then(function () { tape.run(); }) : tape.run();
9898
}
9999

100100
// vim: ft=javascript

example/array.js

+26-26
Original file line numberDiff line numberDiff line change
@@ -4,34 +4,34 @@ var falafel = require('falafel');
44
var test = require('../');
55

66
test('array', function (t) {
7-
t.plan(5);
7+
t.plan(5);
88

9-
var src = '(' + function () {
10-
var xs = [ 1, 2, [ 3, 4 ] ];
11-
var ys = [ 5, 6 ];
12-
g([ xs, ys ]);
13-
} + ')()';
9+
var src = '(' + function () {
10+
var xs = [ 1, 2, [ 3, 4 ] ];
11+
var ys = [ 5, 6 ];
12+
g([ xs, ys ]);
13+
} + ')()';
1414

15-
var output = falafel(src, function (node) {
16-
if (node.type === 'ArrayExpression') {
17-
node.update('fn(' + node.source() + ')');
18-
}
19-
});
15+
var output = falafel(src, function (node) {
16+
if (node.type === 'ArrayExpression') {
17+
node.update('fn(' + node.source() + ')');
18+
}
19+
});
2020

21-
var arrays = [
22-
[3, 4],
23-
[1, 2, [3, 4]],
24-
[5, 6],
25-
[[ 1, 2, [3, 4]], [5, 6]]
26-
];
21+
var arrays = [
22+
[3, 4],
23+
[1, 2, [3, 4]],
24+
[5, 6],
25+
[[ 1, 2, [3, 4]], [5, 6]]
26+
];
2727

28-
Function(['fn', 'g'], output)(
29-
function (xs) {
30-
t.same(arrays.shift(), xs);
31-
return xs;
32-
},
33-
function (xs) {
34-
t.same(xs, [ [ 1, 2, [ 3, 4 ] ], [ 5, 6 ] ]);
35-
}
36-
);
28+
Function(['fn', 'g'], output)(
29+
function (xs) {
30+
t.same(arrays.shift(), xs);
31+
return xs;
32+
},
33+
function (xs) {
34+
t.same(xs, [ [ 1, 2, [ 3, 4 ] ], [ 5, 6 ] ]);
35+
}
36+
);
3737
});

example/fail.js

+26-26
Original file line numberDiff line numberDiff line change
@@ -4,34 +4,34 @@ var falafel = require('falafel');
44
var test = require('../');
55

66
test('array', function (t) {
7-
t.plan(5);
7+
t.plan(5);
88

9-
var src = '(' + function () {
10-
var xs = [ 1, 2, [ 3, 4 ] ];
11-
var ys = [ 5, 6 ];
12-
g([ xs, ys ]);
13-
} + ')()';
9+
var src = '(' + function () {
10+
var xs = [ 1, 2, [ 3, 4 ] ];
11+
var ys = [ 5, 6 ];
12+
g([ xs, ys ]);
13+
} + ')()';
1414

15-
var output = falafel(src, function (node) {
16-
if (node.type === 'ArrayExpression') {
17-
node.update('fn(' + node.source() + ')');
18-
}
19-
});
15+
var output = falafel(src, function (node) {
16+
if (node.type === 'ArrayExpression') {
17+
node.update('fn(' + node.source() + ')');
18+
}
19+
});
2020

21-
var arrays = [
22-
[ 3, 4 ],
23-
[ 1, 2, [ 3, 4 ] ],
24-
[ 5, 6 ],
25-
[ [ 1, 2, [ 3, 4 ] ], [ 5, 6 ] ]
26-
];
21+
var arrays = [
22+
[ 3, 4 ],
23+
[ 1, 2, [ 3, 4 ] ],
24+
[ 5, 6 ],
25+
[ [ 1, 2, [ 3, 4 ] ], [ 5, 6 ] ]
26+
];
2727

28-
Function(['fn', 'g'], output)(
29-
function (xs) {
30-
t.same(arrays.shift(), xs);
31-
return xs;
32-
},
33-
function (xs) {
34-
t.same(xs, [ [ 1, 2, [ 3, 4444 ] ], [ 5, 6 ] ]);
35-
}
36-
);
28+
Function(['fn', 'g'], output)(
29+
function (xs) {
30+
t.same(arrays.shift(), xs);
31+
return xs;
32+
},
33+
function (xs) {
34+
t.same(xs, [ [ 1, 2, [ 3, 4444 ] ], [ 5, 6 ] ]);
35+
}
36+
);
3737
});

example/nested.js

+43-43
Original file line numberDiff line numberDiff line change
@@ -4,50 +4,50 @@ var falafel = require('falafel');
44
var test = require('../');
55

66
test('nested array test', function (t) {
7-
t.plan(6);
8-
9-
var src = '(' + function () {
10-
var xs = [1, 2, [3, 4]];
11-
var ys = [5, 6];
12-
g([ xs, ys ]);
13-
} + ')()';
14-
15-
var output = falafel(src, function (node) {
16-
if (node.type === 'ArrayExpression') {
17-
node.update('fn(' + node.source() + ')');
18-
}
19-
});
20-
21-
t.test('inside test', function (q) {
22-
q.plan(2);
23-
q.ok(true, 'inside ok');
24-
25-
setTimeout(function () {
26-
q.ok(true, 'inside delayed');
27-
}, 3000);
28-
});
29-
30-
var arrays = [
31-
[3, 4],
32-
[1, 2, [3, 4]],
33-
[5, 6],
34-
[[1, 2, [3, 4]], [5, 6]]
35-
];
36-
37-
Function(['fn', 'g'], output)(
38-
function (xs) {
39-
t.same(arrays.shift(), xs);
40-
return xs;
41-
},
42-
function (xs) {
43-
t.same(xs, [[1, 2, [3, 4]], [5, 6]]);
44-
}
45-
);
7+
t.plan(6);
8+
9+
var src = '(' + function () {
10+
var xs = [1, 2, [3, 4]];
11+
var ys = [5, 6];
12+
g([ xs, ys ]);
13+
} + ')()';
14+
15+
var output = falafel(src, function (node) {
16+
if (node.type === 'ArrayExpression') {
17+
node.update('fn(' + node.source() + ')');
18+
}
19+
});
20+
21+
t.test('inside test', function (q) {
22+
q.plan(2);
23+
q.ok(true, 'inside ok');
24+
25+
setTimeout(function () {
26+
q.ok(true, 'inside delayed');
27+
}, 3000);
28+
});
29+
30+
var arrays = [
31+
[3, 4],
32+
[1, 2, [3, 4]],
33+
[5, 6],
34+
[[1, 2, [3, 4]], [5, 6]]
35+
];
36+
37+
Function(['fn', 'g'], output)(
38+
function (xs) {
39+
t.same(arrays.shift(), xs);
40+
return xs;
41+
},
42+
function (xs) {
43+
t.same(xs, [[1, 2, [3, 4]], [5, 6]]);
44+
}
45+
);
4646
});
4747

4848
test('another', function (t) {
49-
t.plan(1);
50-
setTimeout(function () {
51-
t.ok(true);
52-
}, 100);
49+
t.plan(1);
50+
setTimeout(function () {
51+
t.ok(true);
52+
}, 100);
5353
});

0 commit comments

Comments
 (0)