From 9f33593f7037a0c6ebaa7dd806d3206ec2618959 Mon Sep 17 00:00:00 2001 From: Jonathan Tran <jonnytran@gmail.com> Date: Mon, 13 May 2024 19:43:56 -0400 Subject: [PATCH] Add pyproject.toml for ruff linting --- pyproject.toml | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 pyproject.toml diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..49bd2a8 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,8 @@ +[tool.ruff] +lint.ignore = [ + "E501", # Line length. + "F405", # Unknown identifier usage due to import *. +] +line-length = 100 +lint.select = ["E", "F", "RUF"] +exclude = []