From b6fce46081979c4ec8fdb833ec9583ac7a2f68cc Mon Sep 17 00:00:00 2001 From: Sky Leite Date: Fri, 3 Feb 2023 23:50:25 -0300 Subject: Fix most formatting and linting errors --- backend/pyproject.toml | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 backend/pyproject.toml (limited to 'backend/pyproject.toml') diff --git a/backend/pyproject.toml b/backend/pyproject.toml new file mode 100644 index 00000000..dd5a6c03 --- /dev/null +++ b/backend/pyproject.toml @@ -0,0 +1,11 @@ +[flake8] +max-line-length = 88 + +[tool.ruff] +ignore = [ + # Ignore line length check and let Black handle it + "E501" +] + +# Assume Python 3.10. +target-version = "py310" -- cgit v1.2.3