Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: pre-commit autoupdate #4336

Merged
merged 2 commits into from
Dec 3, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ repos:
- id: black

- repo: https://github.com/pappasam/toml-sort
rev: v0.23.1
rev: v0.24.2
hooks:
- id: toml-sort-fix

Expand All @@ -59,14 +59,14 @@ repos:
- id: tox-ini-fmt

- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.7.2
rev: v0.8.1
hooks:
- id: ruff
args:
- --exit-non-zero-on-fix

- repo: https://github.com/streetsidesoftware/cspell-cli
rev: v8.15.2
rev: v8.16.0
hooks:
- id: cspell
name: Spell check with cspell
Expand All @@ -80,7 +80,7 @@ repos:
pass_filenames: false

- repo: https://github.com/pycqa/pylint.git
rev: v3.3.1
rev: v3.3.2
hooks:
- id: pylint
args:
Expand Down Expand Up @@ -134,7 +134,7 @@ repos:
--output-file=.config/constraints.txt pyproject.toml
files: ^.config\/.*requirements.*$
- repo: https://github.com/ansible/ansible-lint
rev: v24.9.2
rev: v24.10.0
hooks:
- id: ansible-lint
stages: [manual]
2 changes: 1 addition & 1 deletion src/molecule/command/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
destroy, # noqa: F401
drivers, # noqa: F401
idempotence, # noqa: F401
list, # noqa: F401
list, # noqa: A004, F401
login, # noqa: F401
matrix, # noqa: F401
prepare, # noqa: F401
Expand Down
2 changes: 1 addition & 1 deletion tests/unit/command/test_list.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@

from typing import TYPE_CHECKING

from molecule.command import list
from molecule.command import list # noqa: A004
from molecule.status import Status


Expand Down
Loading