2022-02-19 08:06:25 +00:00
|
|
|
[tool.mypy]
|
2022-03-17 22:48:56 +00:00
|
|
|
python_version = "3.10"
|
2022-04-01 19:58:54 +00:00
|
|
|
mypy_path = ["src/py", "pyodide-build"]
|
|
|
|
show_error_codes = true
|
|
|
|
warn_unreachable = true
|
|
|
|
enable_error_code = ["ignore-without-code", "redundant-expr", "truthy-bool"]
|
2022-09-11 07:20:56 +00:00
|
|
|
plugins = ["pydantic.mypy"]
|
2022-04-01 19:58:54 +00:00
|
|
|
|
|
|
|
# Strict checks
|
|
|
|
warn_unused_configs = true
|
2022-02-23 22:10:53 +00:00
|
|
|
check_untyped_defs = true
|
2022-05-25 02:06:31 +00:00
|
|
|
disallow_any_generics = true
|
2022-04-01 19:58:54 +00:00
|
|
|
disallow_subclassing_any = false
|
|
|
|
disallow_untyped_calls = false
|
|
|
|
disallow_untyped_defs = false
|
2022-05-26 03:31:04 +00:00
|
|
|
disallow_incomplete_defs = true
|
2022-05-25 02:06:31 +00:00
|
|
|
disallow_untyped_decorators = true
|
2022-04-01 19:58:54 +00:00
|
|
|
no_implicit_optional = true
|
|
|
|
warn_redundant_casts = true
|
|
|
|
warn_unused_ignores = true
|
|
|
|
warn_return_any = false
|
2022-05-23 20:24:21 +00:00
|
|
|
no_implicit_reexport = true
|
|
|
|
strict_equality = true
|
2022-02-19 08:06:25 +00:00
|
|
|
|
|
|
|
[[tool.mypy.overrides]]
|
|
|
|
module = [
|
|
|
|
"_pyodide_core",
|
|
|
|
"docutils.parsers.rst",
|
|
|
|
"js",
|
2023-03-13 21:45:06 +00:00
|
|
|
"loky",
|
2022-04-01 19:58:54 +00:00
|
|
|
"matplotlib.*",
|
|
|
|
"PIL.*",
|
2023-03-13 21:45:06 +00:00
|
|
|
"pyodide_js",
|
|
|
|
"pytest_pyodide",
|
|
|
|
"ruamel.yaml",
|
2022-12-02 23:12:33 +00:00
|
|
|
"termcolor",
|
|
|
|
"test",
|
2023-01-24 03:45:59 +00:00
|
|
|
"tomli",
|
2023-03-13 21:45:06 +00:00
|
|
|
"tomllib",
|
2023-01-14 13:59:42 +00:00
|
|
|
"typer",
|
2023-03-13 21:45:06 +00:00
|
|
|
"virtualenv",
|
2022-02-19 08:06:25 +00:00
|
|
|
]
|
|
|
|
ignore_missing_imports = true
|
2022-02-20 22:13:37 +00:00
|
|
|
|
2023-02-06 23:35:20 +00:00
|
|
|
[tool.ruff]
|
|
|
|
select = [
|
2023-03-13 21:45:06 +00:00
|
|
|
"B0", # bugbear (all B0* checks enabled by default)
|
|
|
|
"B904", # bugbear (Within an except clause, raise exceptions with raise ... from err)
|
|
|
|
"B905", # bugbear (zip() without an explicit strict= parameter set.)
|
|
|
|
"C9", # mccabe complexity
|
|
|
|
"E", # pycodestyles
|
|
|
|
"W", # pycodestyles
|
|
|
|
"F", # pyflakes
|
|
|
|
"I", # isort
|
|
|
|
"PGH", # pygrep-hooks
|
|
|
|
"PLC", # pylint conventions
|
|
|
|
"PLE", # pylint errors
|
|
|
|
"UP", # pyupgrade
|
2023-02-06 23:35:20 +00:00
|
|
|
]
|
2023-03-13 21:45:06 +00:00
|
|
|
ignore = ["E402", "E501", "E731", "E741"]
|
|
|
|
# line-length = 219 # E501: Recommended goal is 88 to match black
|
2023-02-06 23:35:20 +00:00
|
|
|
target-version = "py311"
|
|
|
|
|
|
|
|
[tool.ruff.per-file-ignores]
|
|
|
|
"src/py/_pyodide/_base.py" = [
|
|
|
|
"PGH001", # No builtin `eval()` allowed
|
|
|
|
]
|
2023-03-13 21:45:06 +00:00
|
|
|
"src/tests/test_jsproxy.py" = [
|
|
|
|
"PGH001", # No builtin `eval()` allowed
|
|
|
|
]
|
2023-02-06 23:35:20 +00:00
|
|
|
"src/tests/test_typeconversions.py" = [
|
|
|
|
"PGH001", # No builtin `eval()` allowed
|
|
|
|
]
|
|
|
|
|
2023-03-13 21:45:06 +00:00
|
|
|
[tool.ruff.flake8-bugbear]
|
|
|
|
extend-immutable-calls = ["typer.Argument", "typer.Option"]
|
2022-02-21 22:27:03 +00:00
|
|
|
|
2023-02-06 23:35:20 +00:00
|
|
|
[tool.ruff.isort]
|
|
|
|
known-first-party = [
|
2022-02-21 22:27:03 +00:00
|
|
|
"pyodide",
|
|
|
|
"pyodide_js",
|
|
|
|
"micropip",
|
|
|
|
"pyodide_build",
|
|
|
|
"_pyodide",
|
2022-12-02 08:16:16 +00:00
|
|
|
"js",
|
2022-02-21 22:27:03 +00:00
|
|
|
]
|
2023-02-06 23:35:20 +00:00
|
|
|
known-third-party = [
|
2022-03-14 21:08:50 +00:00
|
|
|
"build",
|
|
|
|
]
|
2022-04-09 20:41:10 +00:00
|
|
|
|
2023-03-13 21:45:06 +00:00
|
|
|
[tool.ruff.mccabe]
|
|
|
|
max-complexity = 31 # C901: Recommended goal is 10
|
2023-02-06 23:35:20 +00:00
|
|
|
|
2023-02-26 23:33:53 +00:00
|
|
|
[tool.pytest.ini_options]
|
|
|
|
norecursedirs = [
|
2023-03-13 21:45:06 +00:00
|
|
|
".artifacts",
|
2023-02-26 23:33:53 +00:00
|
|
|
"build",
|
|
|
|
"cpython",
|
|
|
|
"emsdk",
|
|
|
|
]
|
|
|
|
addopts = '''
|
|
|
|
--doctest-modules
|
|
|
|
--ignore="packages/matplotlib/src"
|
|
|
|
--ignore-glob="**/dist/"
|
|
|
|
--tb=short
|
|
|
|
--dist-dir=dist'''
|
|
|
|
testpaths = [
|
|
|
|
"src",
|
|
|
|
"pyodide-build",
|
|
|
|
"packages",
|
|
|
|
]
|
|
|
|
asyncio_mode = "strict"
|
|
|
|
|
2022-04-09 20:41:10 +00:00
|
|
|
[tool.pyodide]
|