Skip to content

Commit b825873

Browse files
tom-tanmr-c
authored andcommitted
Add .gitignore
1 parent b53b722 commit b825873

File tree

1 file changed

+56
-0
lines changed

1 file changed

+56
-0
lines changed

.gitignore

Lines changed: 56 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
1+
# Generated during tests
2+
pytestdebug.log
3+
tmp/
4+
5+
# Python temps
6+
__pycache__/
7+
*.py[cod]
8+
*$py.class
9+
build/
10+
dist/
11+
eggs/
12+
.eggs/
13+
*.egg-info/
14+
*.egg
15+
.tox/
16+
.pytest_cache
17+
18+
# Editor Temps
19+
.*.sw?
20+
*~
21+
\#*\#
22+
.desktop
23+
24+
# virtualenv
25+
venv/
26+
venv3/
27+
28+
# pycharm
29+
.idea/
30+
31+
# typshed repo
32+
typeshed/2and3/schema_salad
33+
typeshed/2and3/ruamel/yaml
34+
35+
36+
#mypy
37+
.mypy_cache/
38+
bin/
39+
lib/
40+
41+
# Files generated by Makefile
42+
.cache/
43+
cache/
44+
.coverage
45+
.coverage.*
46+
coverage.xml
47+
htmlcov
48+
output
49+
output.txt
50+
pydocstyle_report.txt
51+
response.txt
52+
test.txt
53+
time.txt
54+
value
55+
56+
.python-version

0 commit comments

Comments
 (0)