Skip to content

Commit

Permalink
autoupdate pre-commit hooks (#13)
Browse files Browse the repository at this point in the history
* autoupdate pre-commit hooks

updates:
- [github.com/macisamuele/language-formatters-pre-commit-hooks: v2.13.0 → v2.14.0](macisamuele/language-formatters-pre-commit-hooks@v2.13.0...v2.14.0)
- [github.com/fsfe/reuse-tool: v3.1.0a1 → v4.0.3](fsfe/reuse-tool@v3.1.0a1...v4.0.3)
- [github.com/pre-commit/mirrors-mypy: v1.10.1 → v1.11.2](pre-commit/mirrors-mypy@v1.10.1...v1.11.2)
- [github.com/astral-sh/ruff-pre-commit: v0.5.0 → v0.6.9](astral-sh/ruff-pre-commit@v0.5.0...v0.6.9)
- [github.com/pycqa/pylint: v3.2.4 → v3.3.1](pylint-dev/pylint@v3.2.4...v3.3.1)
- [github.com/pre-commit/pre-commit-hooks: v4.6.0 → v5.0.0](pre-commit/pre-commit-hooks@v4.6.0...v5.0.0)

* ignore too many arguments

---------

Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Co-authored-by: Kevin Meagher <11620178+kjmeagher@users.noreply.github.com>
  • Loading branch information
pre-commit-ci[bot] and kjmeagher authored Oct 8, 2024
1 parent d12b12a commit 32627cd
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
14 changes: 7 additions & 7 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,28 +12,28 @@ repos:
- id: prettier
files: \.ya?ml$
- repo: https://github.com/macisamuele/language-formatters-pre-commit-hooks
rev: v2.13.0
rev: v2.14.0
hooks:
- id: pretty-format-toml
args: [--autofix]
- repo: https://github.com/fsfe/reuse-tool
rev: v3.1.0a1
rev: v4.0.3
hooks:
- id: reuse
- repo: https://github.com/pre-commit/mirrors-mypy
rev: v1.10.1
rev: v1.11.2
hooks:
- id: mypy
additional_dependencies: [numpy]
files: src/i3astropy
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.5.0
rev: v0.6.9
hooks:
- id: ruff
args: [--fix, --show-fixes]
- id: ruff-format
- repo: https://github.com/pycqa/pylint
rev: v3.2.4
rev: v3.3.1
hooks:
- id: pylint
- repo: https://github.com/codespell-project/codespell
Expand All @@ -42,7 +42,7 @@ repos:
- id: codespell
args: [-L, livetime]
- repo: https://github.com/adamchainz/blacken-docs
rev: "1.18.0"
rev: "1.19.0"
hooks:
- id: blacken-docs
- repo: https://github.com/pre-commit/pygrep-hooks
Expand All @@ -58,7 +58,7 @@ repos:
- id: forbid-crlf
- id: forbid-tabs
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.6.0
rev: v5.0.0
hooks:
- id: check-added-large-files
- id: check-ast
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ warn_unreachable = true
max-line-length = "108"

[tool.pylint.messages_control]
disable = ["W0201", "R0903", "E0401", "C0411"]
disable = ["W0201", "R0903", "E0401", "C0411", "R0917"]

[tool.pytest.ini_options]
addopts = ["--cov=i3astropy", "--doctest-glob=README.md", "-ra", "--strict-config", "--strict-markers"]
Expand Down

0 comments on commit 32627cd

Please sign in to comment.