Skip to content

Commit

Permalink
Cleanup gitignore file
Browse files Browse the repository at this point in the history
- Make sure the ignores we have are relevant to the project.
- Break up ignores into topical sections
- Switch most directory ignores to relative and directory only rather than
  absolute but matching files or directories
- Remove macOS and editor specific ignores (should be managed by the user)
  • Loading branch information
samdoran committed Nov 8, 2021
1 parent 6492e19 commit 84c6e81
Showing 1 changed file with 31 additions and 26 deletions.
57 changes: 31 additions & 26 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,30 +1,35 @@
# Mac OS X
*.DS_Store
# Test artifacts
*.py,cover
.pytest_cache/
docs/_build/
docs/build/
pytestdebug.log
test/coverage/

# Byte-complied files
*.py[cod]
__pycache__/

# Editors
*.sw[poj]
*~
/.idea
# Distribution / packaging
*.egg
*.egg-info/
.eggs/
AUTHORS
Changelog
build/
deb-build/
dist/
eggs/
rpm-build/

# Environments
.env
.python-version
.tox/
.venv
env/
venv/

# Demo files
/demo/artifacts
/demo/daemon.log
/docs/_build
/.tox
/dist
/build
/rpm-build
/test/coverage
/deb-build
/*.egg-info
*.py[c,o]
.pytest_cache
pytestdebug.log
.coverage
*,cover
.venv
/venv
.env
/.eggs/
docs/build
AUTHORS
ChangeLog

0 comments on commit 84c6e81

Please sign in to comment.