From 4f0b7a06941233e607d3cc9f769036141c1d7a34 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christophe=20Saug=C3=A9?= Date: Mon, 1 May 2023 20:49:13 +0200 Subject: [PATCH] Update Python.gitignore Add ruff cache. ruff tool: https://github.com/charliermarsh/ruff ruff is becoming a very popular tool often run in pre-commit and aim to replace Flake8 (plus dozens of plugins), isort, pydocstyle, yesqa, eradicate, pyupgrade, and autoflake, all while executing tens or hundreds of times faster than any individual tool. --- Python.gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Python.gitignore b/Python.gitignore index 68bc17f9..4c852386 100644 --- a/Python.gitignore +++ b/Python.gitignore @@ -158,3 +158,6 @@ cython_debug/ # and can be added to the global gitignore or merged into this file. For a more nuclear # option (not recommended) you can uncomment the following to ignore the entire idea folder. #.idea/ + +# Ruff stuff: +.ruff_cache/