From fcb40b3ae4897d2b5561e334d5034de87c341156 Mon Sep 17 00:00:00 2001 From: Gabriel Gerlero Date: Fri, 22 Nov 2024 23:55:14 -0300 Subject: [PATCH] Enable extra Ruff rules --- pyproject.toml | 35 +++++++---------------------------- 1 file changed, 7 insertions(+), 28 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index e3ed1bf..0c2b1be 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -52,32 +52,11 @@ py-modules = ["normaldistrib"] version = {attr = "normaldistrib.__version__"} [tool.ruff.lint] -extend-select = [ - "ASYNC", - "B", - "C4", - "ERA", - "F", - "FLY", - "FURB", - "I", - "ICN", - "INT", - "NPY", - "PERF", - "PIE", - "PLC", - "PLE", - "PLW", - "PT", - "PTH", - "Q", - "RET", - "RSE", - "RUF", - "SIM", - "T20", - "TCH", - "UP", - "YTT", +extend-select = ["ALL"] +extend-ignore = [ + "ANN", + "COM812", + "D", + "ISC001", + "PLR0913", ]