8000 feat(scope-manager): only call Object.entries once for each lib by dmichon-msft · Pull Request #10647 · typescript-eslint/typescript-eslint · GitHub
[go: up one dir, main page]

Skip to content

feat(scope-manager): only call Object.entries once for each lib #10647

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

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


10000
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,13 +26,13 @@
"check-clean-workspace-after-install": "git diff --quiet --exit-code",
"check-forma 10000 t": "prettier --check .",
"check-spelling": "cspell --config=.cspell.json \"**/*.{md,mdx,ts,mts,cts,js,cjs,mjs,tsx,jsx}\" --no-progress --show-context --show-suggestions",
"clean": "nx run-many --target=clean",
"clean": "npx nx run-many --target=clean",
"format": "prettier --write .",
"generate-breaking-changes": "npx nx run eslint-plugin:generate-breaking-changes",
"generate-configs": "nx generate-configs",
"generate-contributors": "nx generate-contributors",
"generate-lib": "nx generate-lib",
"generate-sponsors": "nx generate-sponsors",
"generate-configs": "npx nx generate-configs",
"generate-contributors": "npx nx generate-contributors",
"generate-lib": "npx nx generate-lib",
"generate-sponsors": "npx nx generate-sponsors",
"generate-website-dts": "npx nx run website:generate-website-dts",
"lint-fix": "yarn lint --fix",
"lint-markdown-fix": "yarn lint-markdown --fix",
Expand All @@ -45,7 +45,7 @@
"start": "npx nx run website:start",
"test": "npx nx run-many --target=test --exclude integration-tests --exclude website --exclude website-eslint",
"test-integration": "npx nx run integration-tests:test",
"typecheck": "nx run-many --target=typecheck"
"typecheck": "npx nx run-many --target=typecheck"
},
"engines": {
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
Expand Down
17 changes: 10 additions & 7 deletions packages/scope-manager/src/lib/decorators.legacy.ts

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

33 changes: 18 additions & 15 deletions packages/scope-manager/src/lib/decorators.ts

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

17 changes: 10 additions & 7 deletions packages/scope-manager/src/lib/dom.asynciterable.ts

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

157 changes: 80 additions & 77 deletions packages/scope-manager/src/lib/dom.iterable.ts

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

426D
Loading
0