From 13ca79febec032976643446aebb18de13cadf52f Mon Sep 17 00:00:00 2001 From: Zach Burnett Date: Tue, 9 Jul 2024 09:51:00 -0400 Subject: [PATCH] fix Ruff configuration (#67) --- pyproject.toml | 4 ++-- tox.ini | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 169fb16..0ecdccd 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,10 +4,10 @@ requires = ["setuptools", "wheel"] build-backend = 'setuptools.build_meta' -[tool.ruff] +[tool.ruff.lint] select = [ "E9", # syntax / io error "F63", # assertion traps "F7", # keyword outside special block "F82", # undefined variables -] \ No newline at end of file +] diff --git a/tox.ini b/tox.ini index 376ab6f..d605854 100644 --- a/tox.ini +++ b/tox.ini @@ -49,7 +49,7 @@ skip_install = true deps = ruff commands = - ruff . {posargs} + ruff check . {posargs} [testenv:check-build] description = check build sdist/wheel and a strict twine check for metadata