Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

fix(eslint-plugin): replace unclear "error typed" with more helpful description#11704

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 ourterms of service andprivacy statement. We’ll occasionally send you account related emails.

Already on GitHub?Sign in to your account

Open
wjhsf wants to merge2 commits intotypescript-eslint:main
base:main
Choose a base branch
Loading
fromwjhsf:wjh/avoid-unclear-error-typed

Conversation

@wjhsf
Copy link

PR Checklist

Overview

As described in#9591, the error message "Unsafe call of a(n)error type typed value". Namely, what is "anerror type typed value"? It's unclear to anyone who does not know that TypeScript has a special flavor ofany for types that could not be resolved. (Probably just about everyone who doesn't work on TypeScript tooling.)

This PR aims to provide clarity by changing "error typed" to "unresolved due to error", resulting in error messages like "Unsafe call of a(n) unresolved due to error typed value". Not the most natural phrasing, and it would probably be better to use a distinct error message, but my goal was to make a minimal change and not have to go stomping through the code to figure things out. 😅

@typescript-eslint
Copy link
Contributor

Thanks for the PR,@wjhsf!

typescript-eslint is a 100% community driven project, and we are incredibly grateful that you are contributing to that community.

The core maintainers work on this in their personal time, so please understand that it may not be possible for them to review your work immediately.

Thanks again!


🙏Please, if you or your company is finding typescript-eslint valuable, help us sustain the project by sponsoring it transparently onhttps://opencollective.com/typescript-eslint.

@netlify
Copy link

netlifybot commentedOct 17, 2025
edited
Loading

Deploy Preview fortypescript-eslint ready!

NameLink
🔨 Latest commit9f3e331
🔍 Latest deploy loghttps://app.netlify.com/projects/typescript-eslint/deploys/690502f5f86ca70008caf0d0
😎 Deploy Previewhttps://deploy-preview-11704--typescript-eslint.netlify.app
📱 Preview on mobile
Toggle QR Code...

QR Code

Use your smartphone camera to open QR code link.
Lighthouse
Lighthouse
1 paths audited
Performance: 97
Accessibility: 97
Best Practices: 100
SEO: 92
PWA: 80
View the detailed breakdown and full score reports

To edit notification comments on pull requests, go to yourNetlify project configuration.

@wjhsfwjhsf changed the titlereplace unclear "error typed" with more helpful descriptionfix(no-unsafe-call): replace unclear "error typed" with more helpful descriptionOct 17, 2025
@nx-cloud
Copy link

nx-cloudbot commentedOct 17, 2025
edited
Loading

🤖 Nx Cloud AI Fix Eligible

An automatically generated fix could have helped fix failing tasks for this run, but Self-healing CI is disabled for this workspace. Visit workspace settings to enable it and get automatic fixes in future runs.

To disable these notifications, a workspace admin can disable themin workspace settings.


View yourCI Pipeline Execution ↗ for commit9f3e331

CommandStatusDurationResult
nx run integration-tests:test❌ Failed52sView ↗
nx test eslint-plugin --coverage=false✅ Succeeded5m 25sView ↗
nx run-many -t lint✅ Succeeded3m 15sView ↗
nx run-many -t typecheck✅ Succeeded2m 9sView ↗
nx test eslint-plugin-internal --coverage=false✅ Succeeded6sView ↗
nx run types:build✅ Succeeded5sView ↗
nx test typescript-estree --coverage=false✅ Succeeded2sView ↗
nx run generate-configs✅ Succeeded7sView ↗
Additional runs (29)✅ Succeeded...View ↗

☁️Nx Cloud last updated this comment at2025-10-31 18:54:04 UTC

@codecov
Copy link

codecovbot commentedOct 17, 2025
edited
Loading

Codecov Report

✅ All modified and coverable lines are covered by tests.
✅ Project coverage is 90.66%. Comparing base (bb451a1) to head (9f3e331).

Additional details and impacted files
@@           Coverage Diff           @@##             main   #11704   +/-   ##=======================================  Coverage   90.66%   90.66%           =======================================  Files         518      518             Lines       52415    52415             Branches     8678     8678           =======================================  Hits        47521    47521             Misses       4880     4880             Partials       14       14
FlagCoverage Δ
unittest90.66% <100.00%> (ø)

Flags with carried forward coverage won't be shown.Click here to find out more.

Files with missing linesCoverage Δ
packages/eslint-plugin/src/rules/no-unsafe-call.ts97.02% <100.00%> (ø)
...eslint-plugin/src/rules/no-unsafe-member-access.ts100.00% <100.00%> (ø)
🚀 New features to boost your workflow:
  • ❄️Test Analytics: Detect flaky tests, report on failures, and find test suite problems.
  • 📦JS Bundle Analysis: Save yourself from yourself by tracking and limiting bundle sizes in JS merges.

@wjhsfwjhsf changed the titlefix(no-unsafe-call): replace unclear "error typed" with more helpful descriptionfix(eslint-plugin): replace unclear "error typed" with more helpful descriptionOct 31, 2025
Copy link
Member

@JoshuaKGoldbergJoshuaKGoldberg left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others.Learn more.

🙌 time to bikeshed! 🙌

messageId,
data:{
type:isErrorType ?'`error` type' :'`any`',
type:isErrorType ?'unresolved due to error' :'`any`',

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others.Learn more.

Not the most natural phrasing

🤔 yeah, I'm not sure that this specific change is better for users. Looking atthe deploy preview playground, the report message is:

Unsafe call of a(n) unresolved due to error typed value.

It took me a few tries to parse out the English grammar in that sentence, and I had to rely on already knowing the rule & this PR.

I'm drawing a blank here (and am a little swamped), but let's bikeshed. What's a more clear phrase we could go with?

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others.Learn more.

Using an entirely new message would be best. Something along the lines of "Unsafe call of a type that could not be resolved." That's what I originally started doing in this PR, but then I had to touch more files than I wanted to, so I changed to the kludgy phrasing.

@JoshuaKGoldbergJoshuaKGoldberg added the awaiting responseIssues waiting for a reply from the OP or another party labelNov 3, 2025
Sign up for freeto join this conversation on GitHub. Already have an account?Sign in to comment

Reviewers

@JoshuaKGoldbergJoshuaKGoldbergJoshuaKGoldberg requested changes

Requested changes must be addressed to merge this pull request.

Assignees

No one assigned

Labels

awaiting responseIssues waiting for a reply from the OP or another party

Projects

None yet

Milestone

No milestone

Development

Successfully merging this pull request may close these issues.

Bug: [no-unsafe-call] Unclear message "Unsafe call of anerror type typed value" (especially in JSDoc)

2 participants

@wjhsf@JoshuaKGoldberg

[8]ページ先頭

©2009-2025 Movatter.jp