diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 8530c66..191e1c4 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -15,21 +15,11 @@ repos: args: ["--target-version", "3.0"] - repo: https://github.com/astral-sh/ruff-pre-commit - rev: v0.1.6 + rev: v0.1.7 hooks: - id: ruff args: [--fix, --exit-non-zero-on-fix] - - - repo: https://github.com/pycqa/isort - rev: 5.12.0 - hooks: - - id: isort - args: ["--profile", "black"] - - - repo: https://github.com/psf/black - rev: 23.11.0 - hooks: - - id: black + - id: ruff-format - repo: https://github.com/pre-commit/pre-commit-hooks rev: v4.5.0 diff --git a/pyproject.toml b/pyproject.toml index 3e59462..1126454 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -84,9 +84,6 @@ exclude = ''' )/ ''' -[tool.isort] -profile = "black" - [tool.ruff] ignore = [] line-length = 88