From 7a668aef694a0afabb2d8b20064865321461eb90 Mon Sep 17 00:00:00 2001 From: Aleksey Lobanov Date: Sat, 9 May 2026 22:37:56 +0300 Subject: [PATCH] ci: Update ruff settings --- .pre-commit-config.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 3487851..177adac 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -6,10 +6,11 @@ repos: # Run the linter. - id: ruff-check types_or: [ python, pyi, jupyter ] - args: [ --fix ] + args: [ --fix, --line-length=88 ] # Run the formatter. - id: ruff-format types_or: [ python, pyi, jupyter ] + args: [ --line-length=88 ] - repo: https://github.com/PyCQA/flake8 rev: 7.1.1 hooks: