Skip to content

Commit

Permalink
Added linter settings in setup.cfg
Browse files Browse the repository at this point in the history
Added mypy and pydocstyle settings
  • Loading branch information
mplanchard committed Sep 7, 2019
1 parent b15fd16 commit 4ceb366
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,19 @@ test=pytest

[bdist_wheel]
universal=1

[flake8]
max-line-length = 80
per-file-ignores =
**/__init__.py:F401

[mypy]
check_untyped_defs = True
follow_imports = silent
ignore_missing_imports = True
show_column_numbers = True
warn_return_any = True
warn_unused_ignores = True

[pydocstyle]
add-ignore = D202, D400, D413

0 comments on commit 4ceb366

Please sign in to comment.