From 1ed2bd3c354f9f62babf766d74594a67f7d9ae25 Mon Sep 17 00:00:00 2001 From: Micah Jerome Ellison Date: Sat, 24 Jun 2023 22:18:55 -0700 Subject: [PATCH] Add ruff config --- pyproject.toml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index 8a01b0e3..ec07a963 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -138,6 +138,12 @@ filterwarnings = [ "ignore:[WinError 5].*" ] +[tool.ruff] +line-length = 88 + +[tool.ruff.per-file-ignores] +"__init__.py" = ["F401"] + [tool.flakeheaven] max_line_length = 88 exclude = [".git", ".tox", ".venv", "node_modules"]