Skip to content
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

feat: pyproject whitelist #659

Merged
merged 8 commits into from
Sep 24, 2023

Conversation

mflova
Copy link
Contributor

@mflova mflova commented Jul 14, 2023

This PR implements the "white-list" feature for pyproject.toml. Adding disable-all = true will automatically disable all rules but the ones indicated in the pyproject.toml. While I was doing it, I thought that maybe disable-all-default-rules would be more explicit, but I left the disable_all to be more consistent with the CLI implementation.

Regarding the tests, tell me if it is needed to write some.

About the implementation itself, maybe there might be better ways of doing. Specially for the function that gets all error codes. Maybe there is a util-based function that already does that.

Linked to #648

@mflova mflova marked this pull request as ready for review July 15, 2023 15:19
@mflova
Copy link
Contributor Author

mflova commented Jul 15, 2023

What do you think about this type of implementation? I first thought about adding disable_default_error_codes as input argument to the function parse_config_section. But it would be trickier, as calling this function would require extra setup to guess if this parameter must be set or not

@JelleZijlstra
Copy link
Contributor

Thanks! I'm traveling until next weekend so I may be slow to give a full review.

@JelleZijlstra JelleZijlstra self-requested a review July 16, 2023 01:31
@@ -371,6 +375,11 @@ def parse_config_file(
)


@functools.lru_cache
def get_all_error_codes() -> FrozenSet[str]:
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I do not really like this function. I think that, ideally, this should be done by using the registry option populated within __init_subclass__ created by ConfigOption. However, all the error codes are deriving from BooleanOptions. But not only error codes, but also some other boolean based options.

A solution could be creating a new class deriving from BooleanOptions that would only contain all the error codes in registry. This way, the logic splits the boolean options between error-based and pure config based. And therefore, registry would be populated with our error codes. I am not sure if this makes sense, but it is also a bigger rework that might not be interesting. Maybe you know better ways of accessing all the error codes without using this function that I wrote :)

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think that's actually a good idea and shouldn't be too difficult to implement: add a new subclass of BooleanOption that is only for error codes. Might also play better with pyanalyze's functionality for registering new error codes from plugins.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thinking about it more that feels like unnecessary extra complexity. I'll push a few changes and then merge this.

Copy link
Contributor

@JelleZijlstra JelleZijlstra left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks! A few suggestions.


if disable_all_default_error_codes:
if not enabled_error_codes:
warnings.warn(
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This would be the only place we use warnings.warn in pyanalyze. I can see a use case: disable all error codes in the whole project, but enable some specific error codes only for some submodules. So I think we should just remove the warning.

@@ -371,6 +375,11 @@ def parse_config_file(
)


@functools.lru_cache
def get_all_error_codes() -> FrozenSet[str]:
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think that's actually a good idea and shouldn't be too difficult to implement: add a new subclass of BooleanOption that is only for error codes. Might also play better with pyanalyze's functionality for registering new error codes from plugins.

@JelleZijlstra JelleZijlstra merged commit 201fbc9 into quora:master Sep 24, 2023
8 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants