From 3c80dcc6021adcf990cf7bd4043341b25a27575e Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Sat, 31 Jan 2026 00:54:16 +0000 Subject: [PATCH] Initial upload: Doc2Man CLI tool with parsers, generators, and tests --- .gitignore | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..4d80ca1 --- /dev/null +++ b/.gitignore @@ -0,0 +1,31 @@ +# Python +*.py[cod] +*$py.class +*.so +.Python +__pycache__/ +*.egg-info/ +dist/ +build/ +.pytest_cache/ +.mypy_cache/ +.coverage +htmlcov/ + +# Environment +.env +.venv +env/ +venv/ +ENV/ + +# IDE +.vscode/ +.idea/ +*.swp +*.swo +* + +# OS +.DS_Store +Thumbs.db