From 002098b51f7ed82a13438d4c17703346224c8476 Mon Sep 17 00:00:00 2001 From: Dimitri Papadopoulos Orfanos <3234522+DimitriPapadopoulos@users.noreply.github.com> Date: Mon, 1 Jan 2024 23:19:54 +0100 Subject: [PATCH] Adopt the `lint` Ruff table consistently (#11832) --- .ruff.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.ruff.toml b/.ruff.toml index afc234a35..411880515 100644 --- a/.ruff.toml +++ b/.ruff.toml @@ -372,7 +372,7 @@ select = [ "YTT", ] -[per-file-ignores] +[lint.per-file-ignores] "doc/conf.py" = ["INP001"] "doc/development/tutorials/examples/*" = ["INP001"] # allow print() in the tutorial @@ -410,5 +410,5 @@ select = [ # whitelist ``print`` for stdout messages "utils/*" = ["T201"] -[flake8-quotes] +[lint.flake8-quotes] inline-quotes = "single"