diff --git a/.ruff.toml b/.ruff.toml index 98c97c6e..77c0c532 100644 --- a/.ruff.toml +++ b/.ruff.toml @@ -1,6 +1,6 @@ line-length = 120 -ignore = [ +lint.ignore = [ "E741", # ambiguous variable names "E501", # line too long ] diff --git a/tox.ini b/tox.ini index 09035c73..a843cfb6 100644 --- a/tox.ini +++ b/tox.ini @@ -40,10 +40,10 @@ allowlist_externals = [testenv:ruff] deps = - ruff==0.0.263 + ruff==0.3.0 commands = - bash -c 'python -m ruff {env:LINTABLES}' + bash -c 'python -m ruff check {env:LINTABLES}' [testenv:isort] deps =