Skip to content

Commit

Permalink
benchmark: add trailing commas in benchmark/path
Browse files Browse the repository at this point in the history
PR-URL: #46628
Reviewed-By: Mohammed Keyvanzadeh <mohammadkeyvanzade94@gmail.com>
Reviewed-By: Moshe Atlow <moshe@atlow.co.il>
  • Loading branch information
aduh95 authored and MylesBorins committed Feb 20, 2023
1 parent 5d1a729 commit 6b21170
Show file tree
Hide file tree
Showing 22 changed files with 21 additions and 33 deletions.
12 changes: 0 additions & 12 deletions benchmark/.eslintrc.yaml
Expand Up @@ -6,15 +6,3 @@ env:

rules:
prefer-arrow-callback: error

overrides:
- files:
- path/*.js
rules:
comma-dangle: [error, {
arrays: always-multiline,
exports: always-multiline,
functions: only-multiline,
imports: always-multiline,
objects: only-multiline,
}]
2 changes: 1 addition & 1 deletion benchmark/path/basename-posix.js
Expand Up @@ -15,7 +15,7 @@ const bench = common.createBenchmark(main, {
'/foo/bar/baz/asdf/quux.html',
['/foo/bar/baz/asdf/quux.html', '.html'].join('|'),
],
n: [1e5]
n: [1e5],
});

function main({ n, pathext }) {
Expand Down
2 changes: 1 addition & 1 deletion benchmark/path/basename-win32.js
Expand Up @@ -15,7 +15,7 @@ const bench = common.createBenchmark(main, {
'\\foo\\bar\\baz\\asdf\\quux.html',
['\\foo\\bar\\baz\\asdf\\quux.html', '.html'].join('|'),
],
n: [1e5]
n: [1e5],
});

function main({ n, pathext }) {
Expand Down
2 changes: 1 addition & 1 deletion benchmark/path/dirname-posix.js
Expand Up @@ -12,7 +12,7 @@ const bench = common.createBenchmark(main, {
'foo/bar',
'/foo/bar/baz/asdf/quux',
],
n: [1e5]
n: [1e5],
});

function main({ n, path }) {
Expand Down
2 changes: 1 addition & 1 deletion benchmark/path/dirname-win32.js
Expand Up @@ -12,7 +12,7 @@ const bench = common.createBenchmark(main, {
'foo\\bar',
'D:\\foo\\bar\\baz\\asdf\\quux',
],
n: [1e5]
n: [1e5],
});

function main({ n, path }) {
Expand Down
2 changes: 1 addition & 1 deletion benchmark/path/extname-posix.js
Expand Up @@ -15,7 +15,7 @@ const bench = common.createBenchmark(main, {
'/foo/bar/baz/asdf/quux',
'/foo/bar/baz/asdf/quux.foobarbazasdfquux',
],
n: [1e5]
n: [1e5],
});

function main({ n, path }) {
Expand Down
2 changes: 1 addition & 1 deletion benchmark/path/extname-win32.js
Expand Up @@ -15,7 +15,7 @@ const bench = common.createBenchmark(main, {
'D:\\foo\\bar\\baz\\asdf\\quux',
'\\foo\\bar\\baz\\asdf\\quux.foobarbazasdfquux',
],
n: [1e5]
n: [1e5],
});

function main({ n, path }) {
Expand Down
2 changes: 1 addition & 1 deletion benchmark/path/format-posix.js
Expand Up @@ -6,7 +6,7 @@ const bench = common.createBenchmark(main, {
props: [
['/', '/home/user/dir', 'index.html', '.html', 'index'].join('|'),
],
n: [1e6]
n: [1e6],
});

function main({ n, props }) {
Expand Down
2 changes: 1 addition & 1 deletion benchmark/path/format-win32.js
Expand Up @@ -6,7 +6,7 @@ const bench = common.createBenchmark(main, {
props: [
['C:\\', 'C:\\path\\dir', 'index.html', '.html', 'index'].join('|'),
],
n: [1e6]
n: [1e6],
});

function main({ n, props }) {
Expand Down
2 changes: 1 addition & 1 deletion benchmark/path/isAbsolute-posix.js
Expand Up @@ -10,7 +10,7 @@ const bench = common.createBenchmark(main, {
'/baz/..',
'bar/baz',
],
n: [1e5]
n: [1e5],
});

function main({ n, path }) {
Expand Down
2 changes: 1 addition & 1 deletion benchmark/path/isAbsolute-win32.js
Expand Up @@ -11,7 +11,7 @@ const bench = common.createBenchmark(main, {
'C:baz\\..',
'bar\\baz',
],
n: [1e5]
n: [1e5],
});

function main({ n, path }) {
Expand Down
2 changes: 1 addition & 1 deletion benchmark/path/join-posix.js
Expand Up @@ -6,7 +6,7 @@ const bench = common.createBenchmark(main, {
paths: [
['/foo', 'bar', '', 'baz/asdf', 'quux', '..'].join('|'),
],
n: [1e5]
n: [1e5],
});

function main({ n, paths }) {
Expand Down
2 changes: 1 addition & 1 deletion benchmark/path/join-win32.js
Expand Up @@ -6,7 +6,7 @@ const bench = common.createBenchmark(main, {
paths: [
['C:\\foo', 'bar', '', 'baz\\asdf', 'quux', '..'].join('|'),
],
n: [1e5]
n: [1e5],
});

function main({ n, paths }) {
Expand Down
2 changes: 1 addition & 1 deletion benchmark/path/makeLong-win32.js
Expand Up @@ -9,7 +9,7 @@ const bench = common.createBenchmark(main, {
'\\\\foo\\bar',
'\\\\?\\foo',
],
n: [1e5]
n: [1e5],
});

function main({ n, path }) {
Expand Down
2 changes: 1 addition & 1 deletion benchmark/path/normalize-posix.js
Expand Up @@ -11,7 +11,7 @@ const bench = common.createBenchmark(main, {
'/foo/bar',
'/foo/bar//baz/asdf/quux/..',
],
n: [1e5]
n: [1e5],
});

function main({ n, path }) {
Expand Down
2 changes: 1 addition & 1 deletion benchmark/path/normalize-win32.js
Expand Up @@ -11,7 +11,7 @@ const bench = common.createBenchmark(main, {
'C:\\foo\\bar',
'C:\\foo\\bar\\\\baz\\asdf\\quux\\..',
],
n: [1e5]
n: [1e5],
});

function main({ n, path }) {
Expand Down
2 changes: 1 addition & 1 deletion benchmark/path/parse-posix.js
Expand Up @@ -12,7 +12,7 @@ const bench = common.createBenchmark(main, {
'foo/bar',
'/foo/bar/baz/asdf/.quux',
],
n: [1e5]
n: [1e5],
});

function main({ n, path }) {
Expand Down
2 changes: 1 addition & 1 deletion benchmark/path/parse-win32.js
Expand Up @@ -13,7 +13,7 @@ const bench = common.createBenchmark(main, {
'foo\\bar',
'\\foo\\bar\\baz\\asdf\\.quux',
],
n: [1e5]
n: [1e5],
});

function main({ n, path }) {
Expand Down
2 changes: 1 addition & 1 deletion benchmark/path/relative-posix.js
Expand Up @@ -12,7 +12,7 @@ const bench = common.createBenchmark(main, {
['/foo/bar/baz/quux', '/foo/bar/baz/quux'].join('|'),
['/foo/bar/baz/quux', '/var/log'].join('|'),
],
n: [1e5]
n: [1e5],
});

function main({ n, paths }) {
Expand Down
2 changes: 1 addition & 1 deletion benchmark/path/relative-win32.js
Expand Up @@ -10,7 +10,7 @@ const bench = common.createBenchmark(main, {
['C:\\foo\\BAR\\BAZ', 'C:\\foo\\bar\\baz'].join('|'),
['C:\\foo\\bar\\baz\\quux', 'C:\\'].join('|'),
],
n: [1e5]
n: [1e5],
});

function main({ n, paths }) {
Expand Down
2 changes: 1 addition & 1 deletion benchmark/path/resolve-posix.js
Expand Up @@ -9,7 +9,7 @@ const bench = common.createBenchmark(main, {
['foo/bar', '/tmp/file/', '..', 'a/../subfile'].join('|'),
['a/b/c/', '../../..'].join('|'),
],
n: [1e5]
n: [1e5],
});

function main({ n, paths }) {
Expand Down
2 changes: 1 addition & 1 deletion benchmark/path/resolve-win32.js
Expand Up @@ -9,7 +9,7 @@ const bench = common.createBenchmark(main, {
['c:/ignore', 'd:\\a/b\\c/d', '\\e.exe'].join('|'),
['c:/blah\\blah', 'd:/games', 'c:../a'].join('|'),
],
n: [1e5]
n: [1e5],
});

function main({ n, paths }) {
Expand Down

0 comments on commit 6b21170

Please sign in to comment.