Skip to content

Commit

Permalink
chore: Fix lint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
pre-commit-ci[bot] committed May 20, 2024
1 parent a3394aa commit 1384d08
Showing 1 changed file with 7 additions and 10 deletions.
17 changes: 7 additions & 10 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -100,8 +100,7 @@ all = [
line-length = 120
preview = true

[tool.ruff.lint]
select = [
lint.select = [
"A",
"ARG",
"B",
Expand Down Expand Up @@ -129,18 +128,16 @@ select = [
"W",
"YTT",
]
ignore = [
lint.unfixable = [
# Don't touch unused imports
"F401",
]
lint.flake8-tidy-imports.ban-relative-imports = "all"
lint.ignore = [
# Conflict with the Ruff formatter
"COM812",
"ISC001",
]
unfixable = [
# Don't touch unused imports
"F401",
]

[tool.ruff.lint.flake8-tidy-imports]
ban-relative-imports = "all"

[tool.pyproject-fmt]
indent = 2
Expand Down

0 comments on commit 1384d08

Please sign in to comment.