Skip to content
Open
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
20 changes: 10 additions & 10 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,39 +1,39 @@
---
repos:
- repo: https://github.com/charliermarsh/ruff-pre-commit
rev: "v0.0.261"
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: "v0.13.2"
hooks:
- id: ruff
args:
- "--fix"
- "--exit-non-zero-on-fix"

- repo: https://github.com/pre-commit/mirrors-prettier
rev: "v3.0.0-alpha.6"
rev: "v4.0.0-alpha.8"
hooks:
- id: prettier
additional_dependencies:
- prettier
- prettier-plugin-toml

- repo: https://github.com/psf/black
rev: 23.3.0
rev: 25.9.0
hooks:
- id: black

- repo: https://github.com/streetsidesoftware/cspell-cli
rev: v6.31.0
rev: v9.2.0
hooks:
- id: cspell
name: Spell check with cspell

- repo: https://github.com/Lucas-C/pre-commit-hooks
rev: v1.4.2
rev: v1.5.5
hooks:
- id: remove-tabs

- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.4.0
rev: v6.0.0
hooks:
- id: check-merge-conflict
- id: check-symlinks
Expand All @@ -44,12 +44,12 @@ repos:
- id: trailing-whitespace

- repo: https://github.com/codespell-project/codespell
rev: v2.2.4
rev: v2.4.1
hooks:
- id: codespell

- repo: https://github.com/adrienverge/yamllint
rev: v1.30.0
rev: v1.37.1
hooks:
- id: yamllint
args:
Expand All @@ -62,7 +62,7 @@ repos:
- id: darglint

- repo: https://github.com/pycqa/pylint
rev: v2.17.1
rev: v3.3.8
hooks:
- id: pylint
additional_dependencies:
Expand Down
1 change: 1 addition & 0 deletions collection_prep/cmd/runtime.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Get ready for 1.0.0."""

import glob
import logging
import os
Expand Down
1 change: 1 addition & 0 deletions collection_prep/cmd/update.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Get ready for 1.0.0."""

import logging
import os
import platform
Expand Down
1 change: 1 addition & 0 deletions collection_prep/cmd/version.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Script to guess the next version of an ansible collection."""

import logging
import sys

Expand Down
1 change: 1 addition & 0 deletions collection_prep/jinja_utils.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Utilities for jinja2."""

import re

from html import escape as html_escape
Expand Down
1 change: 1 addition & 0 deletions collection_prep/utils.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Get ready for 1.0.0."""

import datetime

from redbaron import RedBaron
Expand Down