Skip to content

Commit 1d4eb28

Browse files
committed
chore: Formatting updates
1 parent 347132f commit 1d4eb28

File tree

7 files changed

+8
-15
lines changed

7 files changed

+8
-15
lines changed

eslint.config.js

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ const prettier = require("eslint-plugin-prettier/recommended");
2929
module.exports = [
3030
prettier,
3131
{
32-
ignores: ["coverage/*", "**/dist/*", "apidoc/*", "backup/*"]
32+
ignores: ["coverage/*", "**/dist/*", "apidoc/*", "backup/*"],
3333
},
3434
{
3535
files: ["*.mjs", "src/*.js"],
@@ -38,18 +38,17 @@ module.exports = [
3838
parser: babel,
3939
parserOptions: {
4040
babelOptions: {
41-
configFile: "./babel.config.js"
41+
configFile: "./babel.config.js",
4242
},
43-
importAttributes: true
44-
}
45-
}
43+
importAttributes: true,
44+
},
45+
},
4646
},
4747
{
48-
files: ['**/__tests__/**/*.[jt]s?(x)', '**/?(*.)+(spec|test).[jt]s?(x)'],
48+
files: ["**/__tests__/**/*.[jt]s?(x)", "**/?(*.)+(spec|test).[jt]s?(x)"],
4949
plugins: {
5050
jest,
5151
},
52-
...jest.configs['flat/recommended'],
52+
...jest.configs["flat/recommended"],
5353
},
54-
]
55-
54+
];

src/proto.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,6 @@ export function setupToJsonURLText({
5353
// a direct call to `target`. Eslint will see that this function is never
5454
// called and flag it as an error.
5555
//
56-
// eslint-disable-line no-unused-vars
5756
export function toJsonURLText(target, ...args) {
5857
return target.toJsonURLText.apply(target, args);
5958
}

test/errors.test.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
/* eslint-disable jest/no-identical-title */
21
/*
32
MIT License
43

test/parse.test.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
/* eslint-disable jest/no-identical-title */
21
/*
32
MIT License
43

test/parseImpliedStringLiterals.test.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
/* eslint-disable jest/no-identical-title */
21
/*
32
MIT License
43

test/parseLiteral.test.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
/* eslint-disable jest/no-identical-title */
21
/*
32
MIT License
43

test/parseWwwFormUrlEncoded.test.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
/* eslint-disable jest/no-identical-title */
21
/*
32
MIT License
43

0 commit comments

Comments
 (0)