Terrence Reilly
Terrence Reilly
Probably, though, an issue/merge request should be put into the Google style guide. (So that others don't run into the same ambiguity.)
Okay, I've submitted an issue [here](https://github.com/google/styleguide/issues/417).
I don't think darglint ever handled them explicitly -- it was kind of an accidental catch. I think this should be pretty easy to handle, though, so we should cover...
Fixed in 62802244d2d390fec9099b822639761c2efe6b60. Should be present in 1.5.5, when that's released.
> FYI I actually just set up a plugin for SublimeText integration here. Ah, cool! I'll make sure to add this to the readme so that others can find it...
Ignoring directories isn't a feature of darglint, yet. It should be, though! If you'd like to add it as a feature, it should be simple. You would add the check...
Alternatively, you could use `find` to invoke darglint, like ``` find . -type d \( -path ./.env -o -path ./.tox \) -prune -false -o -name "*.py" | xargs darglint ```...