From 04ef18105ed61fadaf8e6460133de4b5d84df4d1 Mon Sep 17 00:00:00 2001 From: Laurent FAINSIN Date: Thu, 13 Apr 2023 10:00:03 +0200 Subject: [PATCH] chore: ignore .ruff_cache --- .gitignore | 2 ++ .vscode/settings.json | 1 + 2 files changed, 3 insertions(+) diff --git a/.gitignore b/.gitignore index 0871d04..d25e57d 100644 --- a/.gitignore +++ b/.gitignore @@ -14,6 +14,8 @@ checkpoints *.txt +.ruff_cache + # https://github.com/github/gitignore/blob/main/Python.gitignore # Basic .gitignore for a python repo. diff --git a/.vscode/settings.json b/.vscode/settings.json index 21d0759..86cfde7 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -33,5 +33,6 @@ "**/.hg/store/**": true, "**/output/**": true, "**/ShapeNetCore.v2.PC15k/**": true, + "**/.ruff_cache/**": true, } }