Look at lgtm.com alerts for last couple of months
See original GitHub issueDue to a technical glitch, lgtm.com alerts have not been reported on our pull requests for the last couple of months. They could have caught bugs like #12154.
While most of the alerts added in the last couple of months are to sklearn/externals
which we can largely ignore (or we can tell joblib and liac-arff that they have issues), it would be good to look through other alerts in the repo to find any that aren’t false alarms.
A first step for a contributor here would be to sort through https://lgtm.com/projects/g/scikit-learn/scikit-learn and identify alerts that are candidates to be fixed. (I have spotted at least one unused import alert that we can fix.)
Issue Analytics
- State:
- Created 5 years ago
- Comments:17 (8 by maintainers)
Top Results From Across the Web
The next step for LGTM.com: GitHub code scanning!
Please join our GitHub Discussion on this topic here! How can I download data from LGTM.com before it goes offline? Please take a...
Read more >Alert interest - LGTM
LGTM weights alerts so that the most interesting alerts are displayed at the ... to the project over the last six months of...
Read more >Fixing OSS Security Vulnerabilities at Scale! - YouTube
To date, he has the most GitHub Security Advisory credits to his name ... and preventing critical vulnerabilities https:// lgtm.com / Github ...
Read more >Create mute timings | Grafana documentation
Alerting › Manage your alert notifications › Create mute timings ... For example: -1 for the last day of the month. - Months:...
Read more >Practical Introduction to CodeQL :: jorgectf — blog
... learning for the past few months regarding CodeQL for Python. ... to be built by LGTM) based on GitHub API search or...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
LGTM.com checks are already in the PR checks: https://github.com/scikit-learn/scikit-learn/pull/24051/checks under: “LGTM.com”.
The LGTM.com check breaks CI from time to time because of C++ analysis and the way it needs the base branch to build correctly. For example, https://github.com/scikit-learn/scikit-learn/pull/23493 fixes C++ analysis, but LGTM.com fails because the
main
branch does not have the fix.Given that we do not have any C++ or javascript alerts, I tried to turn C++ and javascript off a while ago: https://github.com/scikit-learn/scikit-learn/issues/14025 but there was no way to do it. Currently, I still do not see a way to turn it off for those languages.
TLDR: LGTM.com is already running on PRs and I think it’s still somewhat useful.
Ah gotcha 👍