Diff of /.gitignore [000000] .. [42b56e]

Switch to unified view

a b/.gitignore
1
./*/.idea
2
./*/.DS_Store
3
.DS_Store
4
.idea
5
6
7
8
# Byte-compiled / optimized / DLL files
9
__pycache__/
10
*.py[cod]
11
*$py.class
12
13
# C extensions
14
*.so
15
16
# Distribution / packaging
17
.Python
18
build/
19
develop-eggs/
20
dist/
21
downloads/
22
eggs/
23
.eggs/
24
lib/
25
lib64/
26
parts/
27
sdist/
28
var/
29
wheels/
30
*.egg-info/
31
.installed.cfg
32
*.egg
33
34
# PyInstaller
35
#  Usually these files are written by a python script from a template
36
#  before PyInstaller builds the exe, so as to inject date/other infos into it.
37
*.manifest
38
*.spec
39
40
# Installer logs
41
pip-log.txt
42
pip-delete-this-directory.txt
43
44
# Unit test / coverage reports
45
htmlcov/
46
.tox/
47
.coverage
48
.coverage.*
49
.cache
50
nosetests.xml
51
coverage.xml
52
*.cover
53
.hypothesis/
54
55
# Translations
56
*.mo
57
*.pot
58
59
# Django stuff:
60
*.log
61
local_settings.py
62
63
# Flask stuff:
64
instance/
65
.webassets-cache
66
67
# Scrapy stuff:
68
.scrapy
69
70
# Sphinx documentation
71
docs/_build/
72
73
# PyBuilder
74
target/
75
76
# Jupyter Notebook
77
.ipynb_checkpoints
78
79
# pyenv
80
.python-version
81
82
# celery beat schedule file
83
celerybeat-schedule
84
85
# SageMath parsed files
86
*.sage.py
87
88
# Environments
89
.env
90
.venv
91
env/
92
venv/
93
ENV/
94
95
# Spyder project settings
96
.spyderproject
97
.spyproject
98
99
# Rope project settings
100
.ropeproject
101
102
# mkdocs documentation
103
/site
104
105
# mypy
106
.mypy_cache/