From 1ab651a4d24be122810e91f3583b97798bb847fc Mon Sep 17 00:00:00 2001 From: Jarrod Millman Date: Fri, 5 Apr 2024 14:16:39 -0700 Subject: [PATCH] Update ruff config --- pyproject.toml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index e8f133b..2df17f2 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -42,6 +42,11 @@ attr = 'lazy_loader.__version__' [tool.ruff] line-length = 88 +exclude = [ + "lazy_loader/tests/fake_pkg/__init__.pyi", +] + +[tool.ruff.lint] select = [ "C", "E", @@ -52,6 +57,3 @@ select = [ "UP", ] ignore = ["B018", "B028"] -exclude = [ - "lazy_loader/tests/fake_pkg/__init__.pyi", -]