From 2d20a51c65e1d6a920f337a20631763521fae462 Mon Sep 17 00:00:00 2001 From: Pepe Marquez Date: Fri, 17 May 2024 13:49:20 +0200 Subject: [PATCH] Updated ruff linting rules --- pyproject.toml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index 2247345..da2f56d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -90,6 +90,8 @@ select = [ ignore = [ "F403", # 'from module import *' used; unable to detect undefined names + "E501", # Line too long ({width} > {limit} characters) + "PLR2004", # Magic value used instead of constant ] fixable = ["ALL"]