Last active
November 9, 2024 06:55
-
-
Save code-yeongyu/1502fb230852b8a1552ea37dc7d89c0e to your computer and use it in GitHub Desktop.
ruff & mypy
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [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