gitignore: Add /.eggs

Quick PR to ignore the `/.eggs` folder, which appears to be generated every
time the `python setup.py test` command is run.

The content of the `./.eggs/README.txt` file:

> This directory contains eggs that were downloaded by setuptools to build,
> test, and run plug-ins.
> 
> This directory caches those eggs to prevent repeated downloads.
> 
> However, it is safe to delete this directory.
This commit is contained in:
Mathieu Couette 2020-09-27 04:06:33 -04:00 committed by GitHub
parent 027d1b0a9a
commit 1a4f9fe00f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

1
.gitignore vendored
View File

@ -4,3 +4,4 @@ __pycache__
/dist
/yamllint.egg-info
/build
/.eggs