Skip to content

Instantly share code, notes, and snippets.

@code-yeongyu
Last active November 9, 2024 06:55
Show Gist options
  • Save code-yeongyu/1502fb230852b8a1552ea37dc7d89c0e to your computer and use it in GitHub Desktop.
Save code-yeongyu/1502fb230852b8a1552ea37dc7d89c0e to your computer and use it in GitHub Desktop.
ruff & mypy
[tool.ruff]
line-length = 119
target-version = "py312"
lint.select = ["PLE", "PLW", "E", "W", "F", "I", "Q", "UP", "C4", "PT"]
[tool.mypy]
python_version = "3.12"
strict = false
check_untyped_defs = true
disallow_untyped_defs = false
disallow_untyped_calls = false
disallow_subclassing_any = false
ignore_missing_imports = true
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment