From a87460e2c662916779c297a2ddd09b63056b88eb Mon Sep 17 00:00:00 2001 From: Bendy <190111823+FlashJetton@users.noreply.github.com> Date: Sun, 17 Aug 2025 15:46:36 +0700 Subject: [PATCH] chore: update .gitignore (ignore docs/ and mkdocs.yml; translate comments to English) --- .gitignore | 20 ++++++++++++++------ 1 file changed, 14 insertions(+), 6 deletions(-) diff --git a/.gitignore b/.gitignore index cb2dd57..a38ee6e 100644 --- a/.gitignore +++ b/.gitignore @@ -1,18 +1,26 @@ -# Виртуальное окружение +# Virtual environments venv/ env/ +.venv/ +docs/.venv/ +site/ +docs/site/ +.cache/ +docs/.cache/ +docs/ -# Кэш Python +# Python cache __pycache__/ *.py[cod] *$py.class -# Файлы сред и конфигураций +# Environment and configuration files .env +mkdocs.yml -# Логи +# Logs *.log -# Временные файлы +# Temporary files .DS_Store -__MACOSX/ \ No newline at end of file +__MACOSX/ -- 2.38.5