From 515adb9aea03a91e40dd308a1f6eab331b2458a5 Mon Sep 17 00:00:00 2001 From: Victor Hall Date: Sat, 17 Dec 2022 22:34:07 -0500 Subject: [PATCH] gitignore --- .gitignore | 9 +++++++++ .pylintrc | 5 +++++ 2 files changed, 14 insertions(+) create mode 100644 .gitignore create mode 100644 .pylintrc diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..3f3f5f8 --- /dev/null +++ b/.gitignore @@ -0,0 +1,9 @@ +/venv +**/__pycache__ +**/*.ckpt +/input/** +/output/** +/ckpt_cache/** +**/.pytest_cache +/logs/** +/tmp/** \ No newline at end of file diff --git a/.pylintrc b/.pylintrc new file mode 100644 index 0000000..c870f8a --- /dev/null +++ b/.pylintrc @@ -0,0 +1,5 @@ +[TYPECHECK] +generated-members=numpy.*, torch.* + +[FORMAT] +max-line-length=160 \ No newline at end of file