Skip to content

Commit

Permalink
Merge pull request Corvia#538 from Corvia/dependabot/pip/ruff-0.2.0
Browse files Browse the repository at this point in the history
build(deps-dev): bump ruff from 0.1.15 to 0.2.0
  • Loading branch information
Dresdn authored Feb 3, 2024
2 parents 1e4d5ef + eab3418 commit e0bfe60
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 22 deletions.
38 changes: 19 additions & 19 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 5 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ django-stubs = ">=1.12,<5.0"
nitpick = ">=0.32,<0.34"
safety = ">=2.2,<4.0"
black = ">=22.8,<24.0"
ruff = "^0.1.14"
ruff = ">=0.1.14,<0.3.0"

# Testing Utilities
pytest = "^7.2.2"
Expand Down Expand Up @@ -106,6 +106,10 @@ max-line-length = 88


[tool.ruff]
line-length = 88
target-version = "py37"

[tool.ruff.lint]
select = ["ALL"]
ignore = [
"ANN", # Type hints related, let mypy handle these.
Expand All @@ -120,8 +124,6 @@ ignore = [
"SIM108", # "Use ternary operator ...". Ternary is harmful for readability in some cases.
"TRY003", # "Avoid specifying long messages outside the exception class"
]
line-length = 88
target-version = "py37"

[tool.ruff.lint.per-file-ignores]
"**/migrations/*" = ["RUF012"]
Expand Down

0 comments on commit e0bfe60

Please sign in to comment.