Skip to content

Commit

Permalink
chore: fix deprecated key in ruff config (#178)
Browse files Browse the repository at this point in the history
  • Loading branch information
msclock committed Sep 18, 2023
1 parent 5138466 commit fcf4f8c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
5 changes: 3 additions & 2 deletions pyproject.toml
Expand Up @@ -88,7 +88,9 @@ minversion = "6.0"
extend-exclude = [
"template",
]
extend-ignore = [
fix = true
ignore = [
# https://docs.astral.sh/ruff/rules/#pydocstyle-d
"D203",
"D204",
"D213",
Expand All @@ -101,7 +103,6 @@ extend-ignore = [
"D409",
"D413",
]
fix = true
select = ["ALL"]
src = ["src"]

Expand Down
5 changes: 3 additions & 2 deletions template/pyproject.toml.jinja
Expand Up @@ -110,7 +110,9 @@ extend-exclude = [
"template",
]
[%- endif %]
extend-ignore = [
fix = true
ignore = [
# https://docs.astral.sh/ruff/rules/#pydocstyle-d
"D203",
"D204",
"D213",
Expand All @@ -123,7 +125,6 @@ extend-ignore = [
"D409",
"D413",
]
fix = true
select = ["ALL"]
src = ["src"]

Expand Down

0 comments on commit fcf4f8c

Please sign in to comment.