gitextract_pe4vyql8/ ├── .editorconfig ├── .gitattributes ├── .github/ │ ├── ISSUE_TEMPLATE/ │ │ ├── 1_bug_report.yaml │ │ ├── 2_question.yaml │ │ └── config.yml │ ├── PULL_REQUEST_TEMPLATE.md │ ├── actionlint.yaml │ ├── renovate.json5 │ ├── workflows/ │ │ ├── build-binaries.yml │ │ ├── build-docker.yml │ │ ├── ci.yaml │ │ ├── daily_property_tests.yml │ │ ├── publish-docs.yml │ │ ├── publish-mirror.yml │ │ ├── publish-pypi.yml │ │ └── release.yml │ └── zizmor.yml ├── .gitignore ├── .gitmodules ├── .markdownlint.yaml ├── .pre-commit-config.yaml ├── .python-version ├── BENCHMARKS.md ├── CHANGELOG.md ├── CONTRIBUTING.md ├── Dockerfile ├── LICENSE ├── README.md ├── SECURITY.md ├── _typos.toml ├── assets/ │ └── badge/ │ └── v0.json ├── dist-workspace.toml ├── docs/ │ ├── .overrides/ │ │ ├── main.html │ │ └── partials/ │ │ └── integrations/ │ │ └── analytics/ │ │ └── fathom.html │ ├── configuration.md │ ├── editors.md │ ├── exclusions.md │ ├── features/ │ │ ├── diagnostics.md │ │ ├── language-server.md │ │ └── type-system.md │ ├── index.md │ ├── installation.md │ ├── js/ │ │ └── extra.js │ ├── modules.md │ ├── python-version.md │ ├── reference/ │ │ ├── cli.md │ │ ├── configuration.md │ │ ├── editor-settings.md │ │ ├── environment.md │ │ ├── exit-codes.md │ │ ├── rules.md │ │ └── typing-faq.md │ ├── requirements.in │ ├── requirements.txt │ ├── rules.md │ ├── stylesheets/ │ │ └── extra.css │ ├── suppression.md │ └── type-checking.md ├── mkdocs.yml ├── pyproject.toml ├── python/ │ └── ty/ │ ├── __init__.py │ ├── __main__.py │ ├── _find_ty.py │ └── py.typed └── scripts/ ├── autogenerate_files.sh ├── release.sh ├── transform_readme.py └── update_schemastore.py