-
Notifications
You must be signed in to change notification settings - Fork 14.2k
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
chore: fix GitHub 'Unchanged files with check annotations' reports in PR #26702
Conversation
superset-frontend/package.json
Outdated
@@ -37,7 +37,7 @@ | |||
"src/setup/*" | |||
], | |||
"scripts": { | |||
"_lint": "eslint --ignore-path=.eslintignore --ext .js,.jsx,.ts,tsx .", | |||
"_lint": "eslint --ignore-path=.eslintignore --ext .js,.jsx,.ts,tsx", |
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.
removing the .
at the end so this private base command can be reused more generically
b1c8f63
to
e83cffa
Compare
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## master #26702 +/- ##
==========================================
- Coverage 67.16% 67.16% -0.01%
==========================================
Files 1894 1894
Lines 74175 74175
Branches 8243 8243
==========================================
- Hits 49821 49818 -3
- Misses 22285 22288 +3
Partials 2069 2069
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. |
Oh it looks like the "Unchanged files with check annotations" is reporting some top N of |
I'm going to lookup a way to shut off the stupid unrelated lint warnings as I really don't think they help. We know we have lint warning, and they really don't help in the context of an unrelated PR. |
Commented here, going to look and see if there's a way to run |
e83cffa
to
2835c78
Compare
I think prior PR fixed #26704 the reporting of these, with |
5b2bab7
to
49a935e
Compare
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.
Meant to review this sooner... I thought some of these estlint-disable
bits might be in actual UI files files. I don't think we should be sweeping any
under the rug in those cases but I don't think it's a problem in these test files.
Yeah in the end what fixed the annoying messages in PRs was to pass a |
SUMMARY
Addressing the GitHub-reported lint warnings that show up in every PR. It's unclear to me why those warnings are surfaced by not others, but let's silence those clean up future PR from this. Note that there are 255 other warnings that are not surfaced in PRs, wondering if they do some sort of top N (?). We'll know soon enough.
Related issue filed with GitHub about this annoying beta feature -> actions/toolkit#457