From a7038bdc66c32c394333c6cf825aa856d09ba753 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Mon, 1 Jul 2024 19:26:41 -0500 Subject: [PATCH] autoupdate pre-commit hooks (#12) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * autoupdate pre-commit hooks updates: - [github.com/fsfe/reuse-tool: v3.0.1 → v3.1.0a1](https://github.com/fsfe/reuse-tool/compare/v3.0.1...v3.1.0a1) - [github.com/pre-commit/mirrors-mypy: v1.9.0 → v1.10.1](https://github.com/pre-commit/mirrors-mypy/compare/v1.9.0...v1.10.1) - [github.com/astral-sh/ruff-pre-commit: v0.3.5 → v0.5.0](https://github.com/astral-sh/ruff-pre-commit/compare/v0.3.5...v0.5.0) - [github.com/pycqa/pylint: v3.1.0 → v3.2.4](https://github.com/pycqa/pylint/compare/v3.1.0...v3.2.4) - [github.com/codespell-project/codespell: v2.2.6 → v2.3.0](https://github.com/codespell-project/codespell/compare/v2.2.6...v2.3.0) - [github.com/adamchainz/blacken-docs: 1.16.0 → 1.18.0](https://github.com/adamchainz/blacken-docs/compare/1.16.0...1.18.0) - [github.com/pre-commit/pre-commit-hooks: v4.5.0 → v4.6.0](https://github.com/pre-commit/pre-commit-hooks/compare/v4.5.0...v4.6.0) * fix spelling --------- 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> --- .pre-commit-config.yaml | 14 +++++++------- pyproject.toml | 4 ++-- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index b4a7f1b..81844c6 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -17,32 +17,32 @@ repos: - id: pretty-format-toml args: [--autofix] - repo: https://github.com/fsfe/reuse-tool - rev: v3.0.1 + rev: v3.1.0a1 hooks: - id: reuse - repo: https://github.com/pre-commit/mirrors-mypy - rev: v1.9.0 + rev: v1.10.1 hooks: - id: mypy additional_dependencies: [numpy] files: src/i3astropy - repo: https://github.com/astral-sh/ruff-pre-commit - rev: v0.3.5 + rev: v0.5.0 hooks: - id: ruff args: [--fix, --show-fixes] - id: ruff-format - repo: https://github.com/pycqa/pylint - rev: v3.1.0 + rev: v3.2.4 hooks: - id: pylint - repo: https://github.com/codespell-project/codespell - rev: v2.2.6 + rev: v2.3.0 hooks: - id: codespell args: [-L, livetime] - repo: https://github.com/adamchainz/blacken-docs - rev: "1.16.0" + rev: "1.18.0" hooks: - id: blacken-docs - repo: https://github.com/pre-commit/pygrep-hooks @@ -58,7 +58,7 @@ repos: - id: forbid-crlf - id: forbid-tabs - repo: https://github.com/pre-commit/pre-commit-hooks - rev: v4.5.0 + rev: v4.6.0 hooks: - id: check-added-large-files - id: check-ast diff --git a/pyproject.toml b/pyproject.toml index bba4754..f51a60f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -79,8 +79,8 @@ ignore = [ "D213", # multi-line-summary-second-line incompatible with multi-line-summary-first-line "D203", # one-blank-line-before-class" incompatible with no-blank-line-before-class "RUF012", # mutable-class-default - "COM812", # confilcts with formatter - "ISC001" # confilcts with formatter + "COM812", # conflicts with formatter + "ISC001" # conflicts with formatter ] select = ["ALL"]