aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorWolfgang Müller2023-03-30 21:16:17 +0200
committerWolfgang Müller2023-03-30 21:17:04 +0200
commit73819ce2aad0b66b4858d207ab1f865ee8f22e5c (patch)
tree4d486a5e6f3417d1cacfa929299c4fd0b449c2f3
parentbca0806c06baccd6775ea0e10a26f490602e9520 (diff)
downloadquarg-73819ce2aad0b66b4858d207ab1f865ee8f22e5c.tar.gz
pyproject.toml: Ignore E501 (line-too-long) for ruff
None of the lines this test affects are worth splitting in our opinion, so disable this warning globally. We'll be the judge about when a line is too long or not for now.
-rw-r--r--pyproject.toml1
1 files changed, 1 insertions, 0 deletions
diff --git a/pyproject.toml b/pyproject.toml
index bc2fd14..32d4a35 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -29,3 +29,4 @@ build-backend = "poetry.core.masonry.api"
[tool.ruff]
select = ["E", "F", "I", "W"]
+ignore = ["E501"]