1
1
Fork 0
mirror of https://github.com/pypa/pip synced 2023-12-13 21:30:23 +01:00

Merge pull request #6935 from pradyunsg/ignore-only-in-root

Ignore build and dist directory appropriately
This commit is contained in:
Pradyun Gedam 2019-09-01 21:39:01 +05:30 committed by GitHub
commit 8601ddeb45
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 2 deletions

4
.gitignore vendored
View file

@ -4,8 +4,8 @@ __pycache__/
*$py.class
# Distribution / packaging
build/
dist/
/build/
/dist/
*.egg
*.eggs
*.egg-info/

View file

@ -1,5 +1,6 @@
[isort]
skip =
./build,
.tox,
.scratch,
_vendor,
@ -15,6 +16,7 @@ include_trailing_comma = true
[flake8]
exclude =
./build,
.tox,
.scratch,
_vendor,