Skip to content

Commit fd51d63

Browse files
authored
1 parent 0238386 commit fd51d63

File tree

1 file changed

+121
-28
lines changed

1 file changed

+121
-28
lines changed

.gitignore

Lines changed: 121 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,66 @@
1-
docs_build/
1+
# Hypha
22
/hypha/static_compiled
3-
__coverage__/
3+
4+
# Django
5+
*.log
6+
*.mo
7+
*.pot
48
*.pyc
5-
.DS_Store
6-
*.swp
7-
/venv/
8-
/static/
9-
/media/
10-
/tmp/
11-
/.vagrant/
12-
/Vagrantfile.local
9+
__pycache__
10+
db.sqlite3
11+
media/
12+
static/
13+
tmp/
14+
15+
# Node
1316
node_modules/
14-
/npm-debug.log
15-
/.idea/
16-
.cache/
17-
.eslintcache
17+
npm-debug.log
18+
19+
# Backup files
20+
*.bak
21+
22+
# If you are using PyCharm
23+
# User-specific stuff
24+
.idea/**/workspace.xml
25+
.idea/**/tasks.xml
26+
.idea/**/usage.statistics.xml
27+
.idea/**/dictionaries
28+
.idea/**/shelf
29+
30+
# AWS User-specific
31+
.idea/**/aws.xml
32+
33+
# Generated files
34+
.idea/**/contentModel.xml
35+
36+
# Sensitive or high-churn files
37+
.idea/**/dataSources/
38+
.idea/**/dataSources.ids
39+
.idea/**/dataSources.local.xml
40+
.idea/**/sqlDataSources.xml
41+
.idea/**/dynamic.xml
42+
.idea/**/uiDesigner.xml
43+
.idea/**/dbnavigator.xml
44+
45+
# Gradle
46+
.idea/**/gradle.xml
47+
.idea/**/libraries
48+
49+
# File-based project format
50+
*.iws
51+
52+
# IntelliJ
53+
out/
54+
55+
# JIRA plugin
56+
atlassian-ide-plugin.xml
57+
58+
# Python
59+
*.py[cod]
60+
*$py.class
1861

1962
# Distribution / packaging
2063
.Python
21-
env/
2264
build/
2365
develop-eggs/
2466
dist/
@@ -31,20 +73,73 @@ parts/
3173
sdist/
3274
var/
3375
wheels/
76+
*.whl
3477
*.egg-info/
3578
.installed.cfg
3679
*.egg
37-
.coverage
38-
htmlcov/
80+
*.manifest
81+
*.spec
3982

40-
# Cache
41-
.mypy_cache/
83+
# Installer logs
84+
pip-log.txt
85+
pip-delete-this-directory.txt
86+
87+
# Unit test / coverage reports
88+
htmlcov/
89+
.tox/
90+
.coverage
91+
.coverage.*
92+
.cache
4293
.pytest_cache/
43-
__pycache__/
94+
nosetests.xml
95+
coverage.xml
96+
*.cover
97+
.hypothesis/
98+
__coverage__/
4499

45-
# Compiled language files
46-
*.mo
100+
# macOS
101+
.DS_Store
102+
103+
# Jupyter Notebook
104+
.ipynb_checkpoints
105+
106+
# celery
107+
celerybeat-schedule.*
108+
109+
# SageMath parsed files
110+
*.sage.py
111+
112+
# Environments
47113
.env
114+
.venv
115+
env/
116+
venv/
117+
ENV/
118+
env.bak/
119+
venv.bak/
120+
121+
# mkdocs documentation
122+
docs_build/
123+
124+
# mypy
125+
.mypy_cache/
126+
127+
# Sublime Text
128+
*.tmlanguage.cache
129+
*.tmPreferences.cache
130+
*.stTheme.cache
131+
*.sublime-workspace
132+
*.sublime-project
133+
134+
# sftp configuration file
135+
sftp-config.json
136+
137+
# Package control specific files Package
138+
Control.last-run
139+
Control.ca-list
140+
Control.ca-bundle
141+
Control.system-ca-bundle
142+
GitHub.sublime-settings
48143

49144
# Visual Studio Code
50145
.vscode/*
@@ -53,12 +148,10 @@ __pycache__/
53148
!.vscode/launch.json
54149
!.vscode/extensions.json
55150
!.vscode/*.code-snippets
56-
57-
# Zed
58-
.zed/
59-
60-
# Local History for Visual Studio Code
61-
.history/
151+
.history
62152

63153
# Built Visual Studio Code Extensions
64154
*.vsix
155+
156+
# Zed
157+
.zed/

0 commit comments

Comments
 (0)