-
Notifications
You must be signed in to change notification settings - Fork 39
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
fix: remove unused support for file glob from command line #1534
base: main
Are you sure you want to change the base?
fix: remove unused support for file glob from command line #1534
Conversation
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #1534 +/- ##
==========================================
+ Coverage 78.62% 78.98% +0.35%
==========================================
Files 175 175
Lines 10957 10942 -15
Branches 1021 1027 +6
==========================================
+ Hits 8615 8642 +27
+ Misses 2338 2296 -42
Partials 4 4
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. |
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.
Nice find, and wowee unit tests even! Great 😄.
Requesting changes just on those lovely tests.
Co-authored-by: Josh Goldberg ✨ <[email protected]>
Thanks for feedback. :) Fixed mentioned issues. Lint step is failing because eslint config is not found for Eslint 9. But this branch should be still using Eslint 8?! I don't know why it tried to use Eslint 9. But |
blagh this must be because I didn't set a branch protection rule. |
PR Checklist
status: accepting prs
Overview
There seems to be undocumented code path that could potentially support giving file glob from command line. Since there is no tests for this and no documentation, it's hard to say is it working as intended currently. I think the current mindset is that these kind of settings would be in the json config file.
This change makes the code simpler to understand.