Skip to content

Commit 33f4571

Browse files
Merge pull request #243 from cyclotruc/chore/pre-commit-autoupdate
chore: run pre-commit autoupdate
2 parents e5bdbce + 7923fab commit 33f4571

28 files changed

+31
-34
lines changed

.pre-commit-config.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ repos:
3939
description: "Automatically convert relative imports to absolute. (Use `args: [--never]` to revert.)"
4040

4141
- repo: https://github.com/psf/black
42-
rev: 24.10.0
42+
rev: 25.1.0
4343
hooks:
4444
- id: black
4545

@@ -61,7 +61,7 @@ repos:
6161
description: "Enforce that python3.6+ type annotations are used instead of type comments."
6262

6363
- repo: https://github.com/PyCQA/isort
64-
rev: 5.13.2
64+
rev: 6.0.1
6565
hooks:
6666
- id: isort
6767
description: "Sort imports alphabetically, and automatically separated into sections and by type."
@@ -73,7 +73,7 @@ repos:
7373
- id: djlint-reformat-jinja
7474

7575
- repo: https://github.com/igorshubovych/markdownlint-cli
76-
rev: v0.43.0
76+
rev: v0.44.0
7777
hooks:
7878
- id: markdownlint
7979
description: "Lint markdown files."
@@ -88,7 +88,7 @@ repos:
8888
files: ^src/
8989

9090
- repo: https://github.com/pycqa/pylint
91-
rev: v3.3.3
91+
rev: v3.3.6
9292
hooks:
9393
- id: pylint
9494
name: pylint for source

src/gitingest/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
""" Gitingest: A package for ingesting data from Git repositories. """
1+
"""Gitingest: A package for ingesting data from Git repositories."""
22

33
from gitingest.cloning import clone
44
from gitingest.entrypoint import ingest, ingest_async

src/gitingest/cli.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
""" Command-line interface for the Gitingest package. """
1+
"""Command-line interface for the Gitingest package."""
22

33
# pylint: disable=no-value-for-parameter
44

src/gitingest/cloning.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
""" This module contains functions for cloning a Git repository to a local path. """
1+
"""This module contains functions for cloning a Git repository to a local path."""
22

33
import asyncio
44
import os

src/gitingest/config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
""" Configuration file for the project. """
1+
"""Configuration file for the project."""
22

33
import tempfile
44
from pathlib import Path

src/gitingest/entrypoint.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
""" Main entry point for ingesting a source and processing its contents. """
1+
"""Main entry point for ingesting a source and processing its contents."""
22

33
import asyncio
44
import inspect

src/gitingest/exceptions.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
""" Custom exceptions for the Gitingest package. """
1+
"""Custom exceptions for the Gitingest package."""
22

33

44
class InvalidPatternError(ValueError):

src/gitingest/filesystem_schema.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
""" Define the schema for the filesystem representation. """
1+
"""Define the schema for the filesystem representation."""
22

33
from __future__ import annotations
44

src/gitingest/ingestion.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
""" Functions to ingest and analyze a codebase directory or single file. """
1+
"""Functions to ingest and analyze a codebase directory or single file."""
22

33
import warnings
44
from pathlib import Path

src/gitingest/ingestion_schema.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
""" This module contains the dataclasses for the ingestion process. """
1+
"""This module contains the dataclasses for the ingestion process."""
22

33
from dataclasses import dataclass
44
from pathlib import Path

0 commit comments

Comments
 (0)