Skip to content

Commit

Permalink
Bump @typescript-eslint/parser from 6.21.0 to 7.13.0 (#1478)
Browse files Browse the repository at this point in the history
* Bump @typescript-eslint/parser from 6.21.0 to 7.13.0

Bumps [@typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser) from 6.21.0 to 7.13.0.
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/parser/CHANGELOG.md)
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v7.13.0/packages/parser)

---
updated-dependencies:
- dependency-name: "@typescript-eslint/parser"
  dependency-type: direct:development
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump deps, format

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Felix <[email protected]>
  • Loading branch information
dependabot[bot] and fb55 authored Jun 16, 2024
1 parent 088b029 commit 19e82a0
Show file tree
Hide file tree
Showing 7 changed files with 394 additions and 765 deletions.
6 changes: 3 additions & 3 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"extends": ["eslint:recommended", "plugin:node/recommended", "prettier"],
"extends": ["eslint:recommended", "plugin:n/recommended", "prettier"],
"env": {
"node": true,
"es6": true
Expand All @@ -23,8 +23,8 @@
"curly": [2, "multi-line"],
"no-else-return": 2,

"node/no-missing-import": 0,
"node/no-unsupported-features/es-syntax": 0
"n/no-missing-import": 0,
"n/no-unsupported-features/es-syntax": 0
},
"overrides": [
{
Expand Down
1,133 changes: 381 additions & 752 deletions package-lock.json

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,13 +42,13 @@
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^20.14.2",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^6.21.0",
"@typescript-eslint/eslint-plugin": "^7.13.0",
"@typescript-eslint/parser": "^7.13.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-n": "^17.9.0",
"jest": "^29.7.0",
"prettier": "^3.2.4",
"prettier": "^3.3.2",
"ts-jest": "^29.1.4",
"typedoc": "^0.25.13",
"typescript": "^5.4.5"
Expand Down
2 changes: 1 addition & 1 deletion scripts/.eslintrc.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"rules": {
"node/no-unsupported-features/es-builtins": 0
"n/no-unsupported-features/es-builtins": 0
}
}
2 changes: 1 addition & 1 deletion scripts/benchmark.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* eslint-disable node/no-missing-import */
/* eslint-disable n/no-missing-import */
import * as entities from "../";
import * as he from "he";
import { parseEntities } from "parse-entities";
Expand Down
2 changes: 1 addition & 1 deletion src/decode_codepoint.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ const decodeMap = new Map([
* Polyfill for `String.fromCodePoint`. It is used to create a string from a Unicode code point.
*/
export const fromCodePoint =
// eslint-disable-next-line @typescript-eslint/no-unnecessary-condition, node/no-unsupported-features/es-builtins
// eslint-disable-next-line @typescript-eslint/no-unnecessary-condition, n/no-unsupported-features/es-builtins
String.fromCodePoint ??
function (codePoint: number): string {
let output = "";
Expand Down
6 changes: 3 additions & 3 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,13 +26,13 @@
/* Module Resolution Options */
"esModuleInterop": true,
"moduleResolution": "node",
"resolveJsonModule": true,
"resolveJsonModule": true
},
"include": ["src"],
"exclude": [
"**/*.spec.ts",
"**/__fixtures__/*",
"**/__tests__/*",
"**/__snapshots__/*",
],
"**/__snapshots__/*"
]
}

0 comments on commit 19e82a0

Please sign in to comment.