From 98c2b11378f9df5745c4d084693441d3df404495 Mon Sep 17 00:00:00 2001 From: Justin Newberry Date: Mon, 14 Aug 2023 12:52:47 -0700 Subject: [PATCH] Ruff: propogate config from OP (#916) --- pyproject.toml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index f2d671d1bf..035775acc4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -13,7 +13,8 @@ ignore = ["E111", "E114"] # https://beta.ruff.rs/docs/configuration/#using-pyprojecttoml [tool.ruff] -select = ["E", "F", "W"] -ignore = ["W292", "E741"] +select = ["E", "F", "W", "PIE", "C4", "ISC", "RUF100", "A"] +ignore = ["W292", "E741", "E402", "C408", "ISC003"] line-length = 160 -target-version="py311" \ No newline at end of file +target-version="py311" +flake8-implicit-str-concat.allow-multiline=false