From 58846b65e6eb65155c404b19f2ebd615abc08b30 Mon Sep 17 00:00:00 2001 From: Matt Dawkins Date: Tue, 27 Jan 2026 10:41:59 -0500 Subject: [PATCH] chore: align line-length to 100 across Black, isort, and flake8 Black was configured for 100, isort for 90, and flake8 for 88. This inconsistency could cause flake8 to flag lines that Black considers valid. Standardize all three tools to 100. Co-Authored-By: Claude Opus 4.5 --- .flake8 | 2 +- setup.cfg | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.flake8 b/.flake8 index 9410c79..1663db5 100644 --- a/.flake8 +++ b/.flake8 @@ -1,3 +1,3 @@ [flake8] -max-line-length = 88 +max-line-length = 100 extend-ignore = E203,E501 diff --git a/setup.cfg b/setup.cfg index d73eb80..1cfe97b 100644 --- a/setup.cfg +++ b/setup.cfg @@ -62,7 +62,7 @@ exclude = .git [tool:isort] profile = black -line_length = 90 +line_length = 100 multi_line_output = 3 include_trailing_comma = true force_grid_wrap = 0