From b3246c02323193ecdf8c0b4a910f6a16a989c979 Mon Sep 17 00:00:00 2001 From: Johan Date: Mon, 2 Feb 2026 15:50:27 +0100 Subject: [PATCH] ci v2 --- .pre-commit-config.yaml | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index da2e87e..5dc6bbf 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -24,8 +24,6 @@ repos: - id: mixed-line-ending name: Fix mixed line endings args: ['--fix=lf'] - - # Python code formatting (Black) - repo: https://github.com/psf/black rev: 24.1.1 hooks: @@ -33,16 +31,12 @@ repos: name: Format code with black language_version: python3 args: ['--line-length=100'] - - # Import sorting (isort) - repo: https://github.com/PyCQA/isort rev: 5.13.2 hooks: - id: isort name: Sort imports with isort args: ['--profile=black'] - - # Linting (Flake8) - repo: https://github.com/PyCQA/flake8 rev: 7.0.0 hooks: @@ -50,17 +44,12 @@ repos: name: Lint code with flake8 args: ['--max-line-length=100', '--ignore=E203,W503,D100,D101,D102,D103,D104,D105,D106,B008'] additional_dependencies: ['flake8-bugbear'] - - # Security checks (Bandit) - - # YAML linting - repo: https://github.com/adrienverge/yamllint rev: v1.33.0 hooks: - id: yamllint name: Lint YAML files args: ['-d', '{extends: relaxed, rules: {line-length: {max: 120}}}'] - ci: autofix_commit_msg: 'chore: auto-fixes from pre-commit hooks' autofix_prs: true