[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v4 23/24] python: add .gitignore
From: |
John Snow |
Subject: |
[PATCH v4 23/24] python: add .gitignore |
Date: |
Thu, 11 Feb 2021 13:58:55 -0500 |
Ignore *Python* build and package output (build, dist, qemu.egg-info);
these files are not created as part of a QEMU build.
Ignore miscellaneous cached python confetti (__pycache__, *.pyc,
.mypy_cache).
Ignore .idea (pycharm) and .venv (pipenv et al).
Signed-off-by: John Snow <jsnow@redhat.com>
---
python/.gitignore | 9 +++++++++
1 file changed, 9 insertions(+)
create mode 100644 python/.gitignore
diff --git a/python/.gitignore b/python/.gitignore
new file mode 100644
index 00000000000..78c522768bc
--- /dev/null
+++ b/python/.gitignore
@@ -0,0 +1,9 @@
+*.pyc
+.idea/
+.mypy_cache/
+.pytest_cache/
+.venv/
+__pycache__/
+build/
+dist/
+qemu.egg-info/
--
2.29.2
- Re: [PATCH v4 11/24] python: add pylint to pipenv, (continued)
- [PATCH v4 07/24] python: add directory structure README.rst files, John Snow, 2021/02/11
- [PATCH v4 12/24] python: move flake8 config to setup.cfg, John Snow, 2021/02/11
- [PATCH v4 13/24] python: Add flake8 to pipenv, John Snow, 2021/02/11
- [PATCH v4 18/24] python/qemu: add qemu package itself to pipenv, John Snow, 2021/02/11
- [PATCH v4 23/24] python: add .gitignore,
John Snow <=
- [PATCH v4 22/24] python: add Makefile for some common tasks, John Snow, 2021/02/11
- [PATCH v4 21/24] python: add excluded dirs to flake8 config, John Snow, 2021/02/11
- [PATCH v4 24/24] gitlab: add python linters to CI, John Snow, 2021/02/11
- [PATCH v4 15/24] python: add mypy to pipenv, John Snow, 2021/02/11
- [PATCH v4 20/24] python: add pytest and tests, John Snow, 2021/02/11
- [PATCH v4 19/24] python: add devel package requirements to setuptools, John Snow, 2021/02/11
- [PATCH v4 16/24] python: move .isort.cfg into setup.cfg, John Snow, 2021/02/11