Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Aug 17, 2024
1 parent 6b436b9 commit 687be13
Showing 1 changed file with 14 additions and 16 deletions.
30 changes: 14 additions & 16 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,31 +27,29 @@ dynamic = [
urls."GitHub" = "https://github.com/pypa/installer"

[tool.ruff]
fix = true
src = ["src"]
src = [ "src" ]
extend-exclude = [
"docs/*",
"noxfile.py",
"docs/*"
]

[tool.ruff.lint]
select = [
fix = true
lint.select = [
"D",
"E",
"F",
"W",
"I",
"D",
"W",
]
ignore = [
"D105", "D203", "D213", "E501"
lint.ignore = [
"D105",
"D203",
"D213",
"E501",
]

[tool.ruff.lint.per-file-ignores]
"tests/*" = ["D"]
"tools/*" = ["D"]

[tool.ruff.lint.isort]
known-first-party = ["src"]
lint.per-file-ignores."tests/*" = [ "D" ]
lint.per-file-ignores."tools/*" = [ "D" ]
lint.isort.known-first-party = [ "src" ]

[tool.coverage.report]
exclude_lines = [
Expand Down

0 comments on commit 687be13

Please sign in to comment.