We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c46f6ba commit 7bfe360Copy full SHA for 7bfe360
2 files changed
.github/dependabot.yml
@@ -1,7 +1,7 @@
1
version: 2
2
3
updates:
4
- - package-ecosystem: pip
+ - package-ecosystem: uv
5
directory: '/'
6
schedule:
7
interval: weekly
pyproject.toml
@@ -50,6 +50,7 @@ select = [
50
"C4", # flake8-comprehensions
51
"SIM", # flake8-simplify
52
"TID", # flake8-tidy-imports
53
+ "TC", # flake8-type-checking
54
"RUF", # Ruff-specific rules
55
]
56
ignore = [
@@ -71,6 +72,9 @@ convention = "google"
71
72
[tool.ruff.lint.flake8-tidy-imports]
73
ban-relative-imports = "all"
74
75
+[tool.ruff.lint.flake8-type-checking]
76
+strict = true
77
+
78
[tool.mypy]
79
files = "src"
80
mypy_path = "src"
0 commit comments