From cbc91f25070f64c3d05f196dd475cabe6a8a67d0 Mon Sep 17 00:00:00 2001 From: tazlin Date: Thu, 11 Apr 2024 20:49:35 -0400 Subject: [PATCH] fix: conform with new ruff pyproject.toml sections --- pyproject.toml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 415b072..abd0538 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -38,6 +38,9 @@ tests = ["*.json"] [tool.ruff] line-length = 119 +exclude = ["codegen"] + +[tool.ruff.lint] select = [ "A", "I", @@ -70,9 +73,8 @@ ignore = [ "D408", "D409", "D413",] -exclude = ["codegen"] -[tool.ruff.per-file-ignores] +[tool.ruff.lint.per-file-ignores] "__init__.py" = ["E402"] "conftest.py" = ["E402"]