From 0ecaed7d951bd9ba1337c9280e5c9080c9381eb6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Anssi=20Syrj=C3=A4salo?= Date: Mon, 29 Jul 2024 12:20:35 +0300 Subject: [PATCH] build(lint): Add ruff lint rules --- pyproject.toml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index 4e86a86..040470d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -92,3 +92,6 @@ addopts = "--cov --spec --instafail --diff-type=auto" [tool.mypy] disallow_untyped_defs = true ignore_missing_imports = true + +[tool.ruff.lint] +select = ["E4", "E7", "E9", "F", "I", "Q"]