Skip to content

Instantly share code, notes, and snippets.

@AlexWaygood
Created March 5, 2026 12:30
Show Gist options
  • Select an option

  • Save AlexWaygood/4abd6426cf1b97d8453e1822236246f9 to your computer and use it in GitHub Desktop.

Select an option

Save AlexWaygood/4abd6426cf1b97d8453e1822236246f9 to your computer and use it in GitHub Desktop.
{"version": 1, "file_mapping": {"foo.py": "foo.py", "pyproject.toml": "pyproject.toml"}}
import abc
class Foo(metaclass=abc.ABCMeta): ...
Foo()
[project]
name = "sandbox"
version = "0.1.0"
requires-python = ">=3.10"
dependencies = []
[tool.ty]
[tool.ty.terminal]
output-format = "concise"
[tool.ty.rules]
undefined-reveal = "ignore"
possibly-unresolved-reference = "warn"
[tool.pyright]
reportWildcardImportFromLibrary = false
reportSelfClsParameterName = false
reportUnusedExpression = false
[tool.zuban]
pretty = false
check_untyped_defs = true
[tool.mypy]
color_output = true
pretty = false
check_untyped_defs = true
strict = true
enable_error_code = "possibly-undefined"
[tool.pyrefly]
[tool.pycroscope]
import_paths = ["."]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment