From c003fc0841367227aff3c2c1192fe60abbd1a458 Mon Sep 17 00:00:00 2001 From: Andrey Rakhmatullin Date: Thu, 12 Dec 2024 21:07:01 +0500 Subject: [PATCH] Add flake8 warning rules to ruff. --- pyproject.toml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index b63a3631b..c0297e192 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -264,6 +264,8 @@ extend-select = [ "TC", # pyupgrade "UP", + # pycodestyle warnings + "W", # flake8-2020 "YTT", ]