Skip to content

Commit

Permalink
chore: remove mypy and add PYI linting rule to Ruff configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
srijanpatel committed Feb 20, 2025
1 parent 7b65b7c commit 6633cea
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions backend/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,6 @@ dev = [
"black>=23.0",
"isort>=5.0",
"ruff>=0.1.0",
"mypy>=1.0",
]

[tool.hatch.build.targets.wheel]
Expand All @@ -100,7 +99,7 @@ line-length = 100
target-version = "py312"

[tool.ruff.lint]
select = ["E", "F", "I", "N", "W", "B", "C", "D"]
select = ["E", "F", "I", "N", "W", "B", "C", "D", "PYI"]
ignore = [
"D100", # Missing docstring in public module
"D101", # Missing docstring in public class
Expand Down

0 comments on commit 6633cea

Please sign in to comment.