From 375a7ceaefde6d41ea5157da7786bc48ee5035ab Mon Sep 17 00:00:00 2001 From: feldsheborys Date: Fri, 20 Feb 2026 16:39:07 +0100 Subject: [PATCH 1/2] made things --- .pre-commit-config.yaml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .pre-commit-config.yaml diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml new file mode 100644 index 0000000..a00cee1 --- /dev/null +++ b/.pre-commit-config.yaml @@ -0,0 +1,18 @@ +repos: + - repo: https://github.com/pre-commit/pre-commit-hooks + rev: v4.5.0 + hooks: + - id: trailing-whitespace + - id: end-of-file-fixer + - id: check-yaml + - id: check-added-large-files + + - repo: https://github.com/astral-sh/ruff-pre-commit + rev: v0.3.0 + hooks: + - id: ruff # Linting + + - repo: https://github.com/psf/black + rev: stable + hooks: + - id: black # formatting -- 2.30.2 From 17bf155f9e9218489dce0a9254da5be8a48bb7a5 Mon Sep 17 00:00:00 2001 From: feldsheborys Date: Fri, 20 Feb 2026 16:46:11 +0100 Subject: [PATCH 2/2] made things --- pyproject.toml | 1 - 1 file changed, 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index d6609b8..3c32f93 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,3 +1,2 @@ [tool.pytest.ini_options] pythonpath = ["."] - -- 2.30.2