PyCQA / pycodestyle

Simple Python style checker in one Python file
https://pycodestyle.pycqa.org
Other
5.01k stars 755 forks source link

`exclude` is applied to `.` #1217

Open bersbersbers opened 8 months ago

bersbersbers commented 8 months ago

Same issue as flake8 once had, see https://github.com/pycqa/flake8/issues/360

.* should include all hidden directory, but actually ignore everything because the current directory . matches. .?* can be used as a workaround.