Skip to content

Commit

Permalink
Fix codacy complaints
Browse files Browse the repository at this point in the history
Codacy runs, among other tools, [`pep257`][0] on the code, which in turn
issues some complaints. As these complaints are actually stricter than
and thus not really mandated by [PEP 257][1], I'm trying to configure
`pep257` via "setup.cfg", telling it to ignore these warnings.

[0]: https://pep257.readthedocs.io/en/latest/index.html
[1]: https://www.python.org/dev/peps/pep-0257/
  • Loading branch information
gnn committed Nov 12, 2020
1 parent dbc1256 commit 20a155a
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -99,3 +99,6 @@ coverage_flags =
nocov: false
environment_variables =
-

[pydocstyle]
ignore = 210, 212, 213

0 comments on commit 20a155a

Please sign in to comment.