Skip to content

Commit

Permalink
Bump ruff to v0.3.5
Browse files Browse the repository at this point in the history
  • Loading branch information
OmeGak committed Apr 3, 2024
1 parent 7754705 commit fecf7e5
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 24 deletions.
40 changes: 20 additions & 20 deletions poetry.lock

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

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ indico = ">=3.3"
mypy = "^1.6.1"
pytest = "^7.4.0"
pytest-cov = "^4.1.0"
ruff = "^0.0.278"
ruff = "^0.3.5"
sqlalchemy2-stubs = "^0.0.2a35"
tox = "^4.11.4"
unbeheader = "^1.3.0"
Expand Down
8 changes: 5 additions & 3 deletions ruff.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
target-version = "py312"
line-length = 120

[lint]
select = [
"B", # flake8-bugbear
"D", # pycodestyle
Expand All @@ -21,13 +23,13 @@ ignore = [
]
task-tags = ["TODO", "FIXME", "XXX", "HACK"]

[isort]
[lint.isort]
force-single-line = true
known-first-party = ["indico_patcher"]
section-order = ["future", "standard-library", "third-party", "indico", "first-party", "local-folder"]

[isort.sections]
[lint.isort.sections]
indico = ["indico"]

[pydocstyle]
[lint.pydocstyle]
convention = "google"

0 comments on commit fecf7e5

Please sign in to comment.