Skip to content

Commit

Permalink
[pre-commit.ci] pre-commit autoupdate (jupyterlab#13897)
Browse files Browse the repository at this point in the history
* [pre-commit.ci] pre-commit autoupdate

updates:
- [github.com/python-jsonschema/check-jsonschema: 0.20.0 → 0.21.0](python-jsonschema/check-jsonschema@0.20.0...0.21.0)
- [github.com/charliermarsh/ruff-pre-commit: v0.0.237 → v0.0.238](astral-sh/ruff-pre-commit@v0.0.237...v0.0.238)

* Ignore PLR0913

---------

Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Co-authored-by: Frédéric Collonval <[email protected]>
  • Loading branch information
pre-commit-ci[bot] and fcollonval authored Jan 31, 2023
1 parent a9a6702 commit 733e2a2
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ repos:
exclude: .bumpversion.cfg

- repo: https://github.com/python-jsonschema/check-jsonschema
rev: 0.20.0
rev: 0.21.0
hooks:
- id: check-github-workflows

Expand All @@ -35,7 +35,7 @@ repos:
- id: black

- repo: https://github.com/charliermarsh/ruff-pre-commit
rev: v0.0.237
rev: v0.0.238
hooks:
- id: ruff
args: ["--fix"]
Expand Down
4 changes: 3 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ dev = [
"coverage",
"hatch",
"bump2version",
"ruff==0.0.237",
"ruff==0.0.238",
"black[jupyter]==22.12.0"
]

Expand Down Expand Up @@ -257,6 +257,8 @@ ignore = [
"FBT001", "FBT002", "FBT003",
# E501 Line too long (158 > 100 characters)
"E501",
# PLR0913 Too many arguments to function call
"PLR0913",
# SIM105 Use `contextlib.suppress(...)`
"SIM105",
]
Expand Down

0 comments on commit 733e2a2

Please sign in to comment.