[pre-commit.ci] pre-commit autoupdate (#367)

This commit is contained in:
pre-commit-ci[bot] 2024-05-20 16:02:44 -07:00 committed by GitHub
parent 0f558b3661
commit 3c41d39531
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 23 additions and 24 deletions

View File

@ -15,7 +15,7 @@ repos:
- id: tox-ini-fmt
args: ["-p", "fix"]
- repo: https://github.com/tox-dev/pyproject-fmt
rev: "2.0.3"
rev: "2.1.1"
hooks:
- id: pyproject-fmt
additional_dependencies: ["tox>=4.12.1"]

View File

@ -67,44 +67,43 @@ build.hooks.vcs.version-file = "src/pipdeptree/version.py"
version.source = "vcs"
[tool.ruff]
line-length = 120
target-version = "py38"
line-length = 120
format.preview = true
format.docstring-code-line-length = 100
format.docstring-code-format = true
lint.select = [
"ALL",
]
lint.per-file-ignores."tests/**/*.py" = [
"D", # don"t care about documentation in tests
"FBT", # don"t care about booleans as positional arguments in tests
"PLC2701", # Private import in tests
"PLR0913", # any number of arguments in tests
"PLR0917", # any number of arguments in tests
"PLR2004", # Magic value used in comparison, consider replacing with a constant variable
"S603", # `subprocess` call: check for execution of untrusted input
]
lint.isort = { known-first-party = [
"pipdeptree",
], required-imports = [
"from __future__ import annotations",
] }
lint.select = [
"ALL",
]
lint.ignore = [
"S101", # asserts allowed
"INP001", # no implicit namespace
"D104", # Missing docstring in public package
"S104", # Possible binding to all interface
"ANN101", # No type annotation for self
"ANN102", # Missing type annotation for `cls` in classmethod
"ANN401", # Dynamically typed expressions (typing.Any) are disallowed in
"COM812", # Conflict with formatter
"CPY", # No copyright statements
"D104", # Missing docstring in public package
"D203", # `one-blank-line-before-class` (D203) and `no-blank-line-before-class` (D211) are incompatible
"D212", # `multi-line-summary-first-line` (D212) and `multi-line-summary-second-line` (D213) are incompatible
"COM812", # Conflict with formatter
"INP001", # no implicit namespace
"ISC001", # Conflict with formatter
"CPY", # No copyright statements
"S101", # asserts allowed
"S104", # Possible binding to all interface
]
lint.preview = true
format.preview = true
format.docstring-code-format = true
format.docstring-code-line-length = 100
[tool.ruff.lint.per-file-ignores]
"tests/**/*.py" = [
"PLR0913", # any number of arguments in tests
"PLR0917", # any number of arguments in tests
"PLC2701", # Private import in tests
"FBT", # don"t care about booleans as positional arguments in tests
"D", # don"t care about documentation in tests
"S603", # `subprocess` call: check for execution of untrusted input
"PLR2004", # Magic value used in comparison, consider replacing with a constant variable
]
[tool.codespell]
builtin = "clear,usage,en-GB_to_en-US"