From e34d621e6d334d8b5838ecd879d8663232e905cc Mon Sep 17 00:00:00 2001 From: SeaswimmerTheFsh Date: Wed, 14 Feb 2024 10:59:10 -0500 Subject: [PATCH] test(ruff): enabled E, C, disabled C901 --- pyproject.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 2c174f9..96c9152 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -65,7 +65,7 @@ exclude = [ ] # Same as Black. -line-length = 88 +line-length = 300 indent-width = 4 # Assume Python 3.11 @@ -76,7 +76,7 @@ target-version = "py311" # Unlike Flake8, Ruff doesn't enable pycodestyle warnings (`W`) or # McCabe complexity (`C901`) by default. select = ["F", "W", "E", "C901"] -ignore = [] +ignore = ["C901"] # Allow fix for all enabled rules (when `--fix`) is provided. fixable = ["ALL"]