Also, how important do we think the `flake8_pantsb...
# development
b
Also, how important do we think the `flake8_pantsbuild`'s "constant-in-a-conditional" check really is? It's the only checks enabled in Pants (the other checks are disabled locally or by the plugin itself). E.g.
Copy code
if True or x:
    ...
if x and False:
    ...
I ask because I was planning on porting the plugin to be first-party, but thats all we use. Thinking we should just toss the plugin altogether
h
the main reason the plugin exists is because back in the day, Pants v1 didn't run Flake8. It was its own combination of some Flake8 lints (pycodestyle iirc) + custom Pants lints We only did that plugin to not break our deprecation policy
What's your proposal? Yank from PyPI? Right now the plugin is not actively maintained
b
We don't have to yank, but we can archive the repo and stop using it in house
👍 1