terrencepreilly / darglint

A python documentation linter which checks that the docstring description matches the definition.
MIT License
481 stars 41 forks source link

flake8 and darglint-ignore-regex #180

Open cazador481 opened 2 years ago

cazador481 commented 2 years ago

Looks like flake8 has added the cmd line option of --darglint-ignore-regex. When putting that in the tox.ini file such as [darglint] darglint-ignore-regex = ^_(.*)

darlint isn't picking up the regex. If put the --darglint-ignore-regex='^_(.*)' darglint is picking that up.

terrencepreilly commented 2 years ago

Yes, it doesn't parse this value from config files. You're welcome to submit a pull request if you think it should.