Skip to content

Commit c6f81b9

Browse files
committed
initial commit
1 parent eb931d9 commit c6f81b9

9 files changed

Lines changed: 432 additions & 436 deletions

File tree

.flake8

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[flake8]
22
select = B,B9,C,D,DAR,E,F,N,RST,S,W
3-
ignore = E203,E501,RST201,RST203,RST301,W503
4-
max-line-length = 80
3+
ignore = E203,E501,RST201,RST203,RST301,W503,D100,D101,D107,D102,D103,D403,D104,D415
4+
max-line-length = 99
55
max-complexity = 10
66
docstring-convention = google
77
per-file-ignores = tests/*:S101

noxfile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ def safety(session: Session) -> None:
149149
@session(python=python_versions)
150150
def mypy(session: Session) -> None:
151151
"""Type-check using mypy."""
152-
args = session.posargs or ["src", "tests", "docs/conf.py"]
152+
args = session.posargs or ["src", "docs/conf.py"]
153153
session.install(".")
154154
session.install("mypy", "pytest")
155155
session.run("mypy", *args)

0 commit comments

Comments
 (0)