Skip to content

Commit 13e4d2a

Browse files
authored
Merge pull request #3 from manabuishii/add_gitingnore_2
Add .gitignore
2 parents 6592132 + cf606fc commit 13e4d2a

File tree

1 file changed

+49
-0
lines changed

1 file changed

+49
-0
lines changed

.gitignore

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

0 commit comments

Comments
 (0)