From fe07617f5d0affb9a3b261f376b4ea1014287b00 Mon Sep 17 00:00:00 2001 From: Philipp Schuster Date: Mon, 16 Jun 2025 10:58:22 +0200 Subject: [PATCH] misc: add __pycache__ to gitignore Running `gitlint` locally produces a __pycache__ directory in `scripts/gitlint/rules/`. It makes sense to exclude this directory. Signed-off-by: Philipp Schuster On-behalf-of: SAP philipp.schuster@sap.com --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index 620caf581..ed2e4ec24 100644 --- a/.gitignore +++ b/.gitignore @@ -7,3 +7,4 @@ /rpm/SOURCES /.vscode /vendor +__pycache__