I am using flake8
, flake8-docstrings
and many other flake8
plugins in our project
I want to disable flake8-docstrings
only for our test
folder.
I want to avoid running flake8 twice because it would mean that running flake8 wouldn't be the straight forward flake8 .
anymore. Not only that would mess with my ide settings, that would also be another excuse for the other developers in my project to not run flake8
.
Is there a way to configure flake8 to exclude specific rules just for a specific folder?