Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump @typescript-eslint/parser from 6.21.0 to 7.13.0 #1478

Merged
merged 2 commits into from
Jun 16, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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,161 changes: 395 additions & 766 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__/*"
]
}