├── .github ├── renovate.json └── workflows │ └── push.yml ├── .gitignore ├── .pre-commit-config.yaml ├── .prettierrc.json ├── LICENSE ├── README.md ├── mypy.ini ├── mypy_silent ├── __init__.py ├── cli.py ├── maho.py ├── parser.py ├── py.typed └── utils.py ├── poetry.lock ├── pyproject.toml └── tests ├── __init__.py ├── test_maho.py └── test_parser.py /.github/renovate.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": ["@whtsky"] 3 | } 4 | -------------------------------------------------------------------------------- /.github/workflows/push.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whtsky/mypy-silent/HEAD/.github/workflows/push.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whtsky/mypy-silent/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whtsky/mypy-silent/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- 1 | "@whtsky/prettier-config" 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whtsky/mypy-silent/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whtsky/mypy-silent/HEAD/README.md -------------------------------------------------------------------------------- /mypy.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whtsky/mypy-silent/HEAD/mypy.ini -------------------------------------------------------------------------------- /mypy_silent/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mypy_silent/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whtsky/mypy-silent/HEAD/mypy_silent/cli.py -------------------------------------------------------------------------------- /mypy_silent/maho.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whtsky/mypy-silent/HEAD/mypy_silent/maho.py -------------------------------------------------------------------------------- /mypy_silent/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whtsky/mypy-silent/HEAD/mypy_silent/parser.py -------------------------------------------------------------------------------- /mypy_silent/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mypy_silent/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whtsky/mypy-silent/HEAD/mypy_silent/utils.py -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whtsky/mypy-silent/HEAD/poetry.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whtsky/mypy-silent/HEAD/pyproject.toml -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_maho.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whtsky/mypy-silent/HEAD/tests/test_maho.py -------------------------------------------------------------------------------- /tests/test_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whtsky/mypy-silent/HEAD/tests/test_parser.py --------------------------------------------------------------------------------