FussyFox / lambdalint

0 stars 1 forks source link

Support blacklisting specific checks #2

Closed RDIL closed 5 years ago

RDIL commented 5 years ago

Say I want pycodestyle to ignore issue foo is that possible?

codingjoe commented 5 years ago

Hi @RDIL you can configure pycodestyle as usual via a config file in your repository. What you can't do however is extend the default behavior of pycodestyle.

Do you have a better example so I could help you better?

RDIL commented 5 years ago

@codingjoe is there any documentation for that? I'm asking because there is this one annoying check I don't want my contributors worrying about, and I can't seem to just be able to flip a toggle.

codingjoe commented 5 years ago

Are we will talking about pycodestyle? https://pycodestyle.readthedocs.io/en/latest/

RDIL commented 5 years ago

Yes.