From 8d8f063fd28a9ea820c78a474d3707c2a57e6794 Mon Sep 17 00:00:00 2001 From: Nathan Chancellor Date: Fri, 2 Feb 2024 18:01:47 -0600 Subject: [PATCH] Merge pull request #261 from nathanchance/update-for-ruff-0.2.0 ruff.toml: Update for 0.2.0 Signed-off-by: onettboots --- ruff.toml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/ruff.toml b/ruff.toml index 9c27f494..1dca1ef4 100644 --- a/ruff.toml +++ b/ruff.toml @@ -1,4 +1,7 @@ -# https://beta.ruff.rs/docs/rules/ +target-version = 'py38' + +# https://docs.astral.sh/ruff/rules/ +[lint] select = [ 'A', # flake8-builtins 'ARG', # flake8-unused-arguments @@ -27,4 +30,3 @@ ignore = [ 'S603', # subprocess-without-shell-equals-true 'S607', # start-process-with-partial-path ] -target-version = 'py38'