Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork2.8k
feat(typescript-estree): replaceglobby
w/fast-glob
#9518
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
feat(typescript-estree): replaceglobby
w/fast-glob
#9518
Uh oh!
There was an error while loading.Please reload this page.
Conversation
Thanks for the PR,@SukkaW! 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 8, 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. |
nx-cloudbot commentedJul 8, 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.
codecovbot commentedJul 8, 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 ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@## main #9518 +/- ##======================================= Coverage 88.04% 88.04% ======================================= Files 407 407 Lines 13948 13951 +3 Branches 4078 4079 +1 =======================================+ Hits 12280 12283 +3 Misses 1355 1355 Partials 313 313
Flags with carried forward coverage won't be shown.Click here to find out more.
|
globby
w/fast-glob
globby
w/fast-glob
globby
w/fast-glob
globby
w/fast-glob
- <tsconfigRootDir>/tsconfig.extra.json | ||
- <tsconfigRootDir>/tsconfig.json |
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.
(passerby comment) Is there a small difference how these libraries find files, or why did this change? I don’t think it matters in this test as it’s just error message. :)
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.
Is there a small difference how these libraries find files
Yes, and thus results in an order difference.
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.
Hmm, ordering changes would make this either a bug, a bugfix, or a breaking change.
It looks to me like this is a bug. Theproject: ['./**/tsconfig.json', './**/tsconfig.extra.json'],
indicates thattsconfig.json
should come first. No?
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.
@JoshuaKGoldberg Fixed in the latest commits. Comments are added to explain the change.
cde05a7
toae480b4
Compare).reduce<string[]>((acc, folder) => { | ||
if (typeof folder === 'string') { | ||
acc.push( | ||
// prefix with a ! for not match glob | ||
folder.startsWith('!') ? folder : `!${folder}`, | ||
); | ||
} | ||
return acc; | ||
}, []); |
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.
A bonus change, replace the.reduce.map
chain with a single.reduce
to avoid unnecessary iteration.
4bd11fc
to15ac7be
Compare@SukkaW would you consider updating this PR to use I took a naive stab at it in#9878, but it's failing the CI. I see you have a lot of extra logic here that I don't have, so perhaps that is needed. It seems you're much more familiar with how this project is setup, so if you're able to update this to use I was also curious why this is in draft mode as it appears to be working. Perhaps if you're able to update it to |
You can check my comments. |
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.
LGTM, thanks for the cleaup! 🧹
globby
w/fast-glob
globby
w/fast-glob
692a3f5
intotypescript-eslint:mainUh oh!
There was an error while loading.Please reload this page.
if (globProjects.length > 0) { | ||
// Although fast-glob supports multiple patterns, fast-glob returns arbitrary order of results | ||
// to improve performance. To ensure the order is correct, we need to call fast-glob for each pattern |
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.
OOC, does the order matter?
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.
There is a unit test case against the order, so yes, it does matter.
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.
But why does the order matter? Shouldn't the unit test just check that the needed files are linted?
JoshuaKGoldbergAug 30, 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.
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.
Folks sometimes do things like['packages/*/tsconfig.json', 'tsconfig.json']
- and/or entries like'tsconfig.eslint.json'
. The order intent is to first try the lower-level TSConfigs first.
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.
Gotcha, thanks!
Uh oh!
There was an error while loading.Please reload this page.
PR Checklist
globby
withfast-glob
#9453Overview
Addresses#9453. All tests passed on my machine locally.