From de76a261a9868d51c23688c5a9ff8b480c771116 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kamil=20=C5=9Aliwak?= Date: Fri, 22 Jul 2022 22:31:29 +0200 Subject: [PATCH] Rudimentary .gitignore suitable for docs --- .gitignore | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000000..64ce25d143 --- /dev/null +++ b/.gitignore @@ -0,0 +1,13 @@ +# Build Sphinx docs in formats like HTML or PDF +/docs/_build + +# robots.txt is generated automatically by docs.sh +/docs/_static/robots.txt + +# Precompiled Python bytecode +__pycache__ +*.pyc + +# OS-specific local cache files +.DS_Store +Thumbs.db