Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: pydocstyle kwargs #232 #233

Open
wants to merge 1 commit into
base: develop
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions pylama/lint/pylama_pydocstyle.py
Expand Up @@ -33,8 +33,8 @@ def run_check(self, ctx: RunContext): # noqa
for err in PyDocChecker().check_source(
ctx.source,
ctx.filename,
params.get("ignore_decorators"),
params.get("ignore_inline_noqa", False),
ignore_decorators=params.get("ignore_decorators"),
ignore_inline_noqa=params.get("ignore_inline_noqa", False),
):
if convention_codes is None or err.code in convention_codes:
ctx.push(
Expand Down
2 changes: 2 additions & 0 deletions setup.cfg
Expand Up @@ -74,6 +74,8 @@ ignore = D,C,W,E1103

[mypy]
ignore_missing_imports = True
no_implicit_optional = False
disable_error_code = annotation-unchecked

[tox:tox]
envlist = py37,py38,py39,py310
Expand Down