From ee3813b09c5b0dcb686b40fb1f7f0d4b1c538e6d Mon Sep 17 00:00:00 2001 From: Dominik Jain Date: Thu, 12 Oct 2023 13:10:54 +0200 Subject: [PATCH] Ignore temp scripts and temp folder --- .gitignore | 6 +++++- pyproject.toml | 2 +- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 5bd579a..ebf5f57 100644 --- a/.gitignore +++ b/.gitignore @@ -151,4 +151,8 @@ wandb/ videos/ # might be needed for IDE plugins that can't read ruff config -.flake8 \ No newline at end of file +.flake8 + +# temporary scripts (for ad-hoc testing), temp folder +/temp +/temp*.py \ No newline at end of file diff --git a/pyproject.toml b/pyproject.toml index 6e24799..290c6e1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -104,7 +104,7 @@ warn_redundant_casts = true warn_unreachable = true warn_unused_configs = true warn_unused_ignores = true -exclude = "^build/|^docs/|^tianshou/utils/(string|logging).py" +exclude = "^build/|^docs/|^tianshou/utils/(string|logging).py|^temp*.py" [tool.doc8] max-line-length = 1000