Replies: 1 comment
-
|
Hey @Coacher! We don't have that yet, but we just added the concept of presets, which seem like a good fit for this case - we can add an "all" preset. I've opened #3328. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I prefer to go all-in on checks in new projects. Popular linters like ruff and pylint have simple options to enable all checks (--select=all, --enable=all). I'd like to do the same with pyrefly but was unable to find such option.
Now I have the following workflow:
deprecated = 'error'This is cumbersome and difficult to manage as I need to reiterate on every release to catch new checks.
Is there a simpler way to run pyrefly with all warn and info checks promoted to errors, e.g.
pyrefly check --error=ALL?Beta Was this translation helpful? Give feedback.
All reactions