forked from projecthamster/hamster-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitignore
45 lines (34 loc) · 771 Bytes
/
.gitignore
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
# This file exists within 'dob':
#
# https://github.com/hotoffthehamster/dob
# Packaging — `make dist`.
build/
dist/
*.egg-info/
.eggs/
# Python byte code.
*.py[cod]
__pycache__/
# Testing/CI tasks.
.pytest_cache/
.tox
# Coverage — `make coverage`.
.coverage
# Coverage — `make coverage-html`.
htmlcov/
# Coverage — `codecov` https://codecov.io.
coverage.xml
# User's personal .ignore (e.g., .ignore.example).
.ignore
# Optional private DEV Makefile.
Makefile.local
# Sphinx Docs — `make docs`
docs/_build/
# Test output for Vim quickfix — `make test-local`.
.make.out
# Translations files.
*.mo
# User's local projects they want pip-installed --editable.
requirements/ultra-editable.pip
# Ditto for dob plugins.
requirements/ultra-pluggable.pip