Skip to content

Commit

Permalink
Merge branch 'main' into rewrite-tests
Browse files Browse the repository at this point in the history
  • Loading branch information
qexat authored Apr 24, 2024
2 parents 7eaa7ba + ef346f4 commit c71a4de
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,21 @@ force-single-line = true
[tool.coverage.run]
omit = ["tests/**/conftest.py"]

[tool.pyright]
include = ["magic_list/**"]
ignore = ["tests/**"]
strict = ["magic_list/**"]

deprecateTypingAliases = true
reportImplicitStringConcatenation = "warning"
reportImportCycles = "warning"
reportMissingSuperCall = "error"
reportPropertyTypeMismatch = "warning"
reportShadowedImports = "warning"
reportUninitializedInstanceVariable = "error"
reportUnnecessaryTypeIgnoreComment = "warning"
reportUnusedCallResult = "information"

[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"

0 comments on commit c71a4de

Please sign in to comment.