/ pyproject.toml
pyproject.toml
1 [project] 2 name = "gif-searcher" 3 version = "0.1.0" 4 description = "A GIF searcher CLI tool" 5 requires-python = ">=3.13" 6 7 [tool.ruff] 8 target-version = "py313" 9 line-length = 88 10 11 [tool.ruff.lint] 12 select = ["ALL"] 13 ignore = ["T201"] 14 15 [tool.mypy] 16 python_version = "3.13" 17 strict = true 18 warn_return_any = true 19 warn_unused_configs = true 20 disallow_untyped_defs = true 21 disallow_incomplete_defs = true 22 check_untyped_defs = true 23 disallow_untyped_decorators = true 24 no_implicit_optional = true 25 warn_redundant_casts = true 26 warn_unused_ignores = true 27 warn_no_return = true 28 warn_unreachable = true