Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork2.8k
fix(typescript-estree): specific error for parserOptions.project not including a file#9584
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
fix(typescript-estree): specific error for parserOptions.project not including a file#9584
Uh oh!
There was an error while loading.Please reload this page.
Conversation
Thanks for the PR,@JoshuaKGoldberg! 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. |
netlifybot commentedJul 18, 2024 • edited
Loading Uh oh!
There was an error while loading.Please reload this page.
edited
Uh oh!
There was an error while loading.Please reload this page.
✅ Deploy Preview fortypescript-eslint ready!
To edit notification comments on pull requests, go to yourNetlify site configuration. |
| astAndProgram.program.getTypeChecker();// ensure parent pointers are set in source files | ||
| constrelativeFilePath=path.relative( | ||
| parseSettings.tsconfigRootDir, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others.Learn more.
This used to betsconfigRootDir || process.cwd(), but I'm pretty sure that's unnecessary.createParseSettings already defaultstsconfigRootDir toprocess.cwd().
nx-cloudbot commentedJul 18, 2024 • edited
Loading Uh oh!
There was an error while loading.Please reload this page.
edited
Uh oh!
There was an error while loading.Please reload this page.
☁️ Nx Cloud ReportCI is running/has finished running commands for commitc201b6c. As they complete they will appear below. Click to see the status, the terminal output, and the build insights. 📂 See all runs for this CI Pipeline Execution ✅ Successfully ran 1 targetSent with 💌 fromNxCloud. |
0ac9fb4 tob58de4bComparecodecovbot commentedJul 18, 2024 • edited
Loading Uh oh!
There was an error while loading.Please reload this page.
edited
Uh oh!
There was an error while loading.Please reload this page.
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@## v8 #9584 +/- ##======================================= Coverage 87.91% 87.92% ======================================= Files 397 397 Lines 13556 13556 Branches 3936 3936 =======================================+ Hits 11918 11919 +1 Misses 1325 1325+ Partials 313 312 -1
Flags with carried forward coverage won't be shown.Click here to find out more.
|
| constcopy=useCallback( | ||
| ()=> | ||
| voidnavigator.clipboard.writeText(code()).then(()=>{ | ||
| navigator.clipboard.writeText(code()).then(()=>{ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others.Learn more.
This is also in thev8 branch. GitHub just isn't updating...

Uh oh!
There was an error while loading.Please reload this page.
PR Checklist
Parsing error: "parserOptions.programs"#9096Overview
When
parseSettings.projectsis populated,useProvidedProgramsnows refer toparserOptions.projectandproject(s)instead ofparserOptions.programsandprogram(s).Also applies a mild refactor to reduce nesting in the function.
I think after this I'd like to holistically revamp the error messages around invalid
💖