Skip to content

Commit c0ae303

Browse files
authored
Update .gitignore
1 parent b62cfa7 commit c0ae303

File tree

1 file changed

+49
-91
lines changed

1 file changed

+49
-91
lines changed

.gitignore

Lines changed: 49 additions & 91 deletions
Original file line numberDiff line numberDiff line change
@@ -13,22 +13,24 @@ __pycache__/
1313

1414
# Distribution / packaging
1515
.Python
16-
env/
1716
build/
1817
develop-eggs/
1918
dist/
2019
downloads/
2120
eggs/
2221
.eggs/
23-
include/
2422
lib/
2523
lib64/
2624
parts/
2725
sdist/
2826
var/
27+
wheels/
28+
pip-wheel-metadata/
29+
share/python-wheels/
2930
*.egg-info/
3031
.installed.cfg
3132
*.egg
33+
MANIFEST
3234

3335
# PyInstaller
3436
# Usually these files are written by a python script from a template
@@ -43,18 +45,17 @@ pip-delete-this-directory.txt
4345
# Unit test / coverage reports
4446
htmlcov/
4547
.tox/
48+
.nox/
4649
.coverage
4750
.coverage.*
4851
.cache
49-
python_junit.xml
50-
junit.xml
5152
nosetests.xml
5253
coverage.xml
53-
*,cover
54+
junit.xml
55+
*.cover
56+
*.py,cover
5457
.hypothesis/
55-
.pytest_cache
56-
.ruff_cache
57-
js/playwright-report
58+
.pytest_cache/
5859

5960
# Translations
6061
*.mo
@@ -63,65 +64,69 @@ js/playwright-report
6364
# Django stuff:
6465
*.log
6566
local_settings.py
67+
db.sqlite3
68+
db.sqlite3-journal
6669

67-
# Flask instance folder
70+
# Flask stuff:
6871
instance/
72+
.webassets-cache
6973

7074
# Scrapy stuff:
7175
.scrapy
7276

73-
# Sphinx documentation
74-
docs/_build/
75-
docs/source
76-
7777
# PyBuilder
7878
target/
7979

80-
# IPython Notebook
81-
.ipynb_checkpoints
82-
*.ipynb
83-
.autoversion
80+
# IPython
81+
profile_default/
82+
ipython_config.py
8483

8584
# pyenv
8685
.python-version
8786

88-
# celery beat schedule file
87+
# pipenv
88+
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
89+
# However, in case of collaboration, if having platform-specific dependencies or dependencies
90+
# having no cross-platform support, pipenv may install dependencies that don't work, or not
91+
# install all needed dependencies.
92+
#Pipfile.lock
93+
94+
# PEP 582; used by e.g. github.com/David-OConnor/pyflow
95+
__pypackages__/
96+
97+
# Celery stuff
8998
celerybeat-schedule
99+
celerybeat.pid
90100

91-
# dotenv
92-
.env
101+
# SageMath parsed files
102+
*.sage.py
93103

94-
# virtualenv
104+
# Environments
105+
.env
106+
.venv
107+
env/
95108
venv/
96109
ENV/
110+
env.bak/
111+
venv.bak/
97112

98113
# Spyder project settings
99114
.spyderproject
115+
.spyproject
100116

101117
# Rope project settings
102118
.ropeproject
103119

104-
# =========================
105-
# Operating System Files
106-
# =========================
107-
108-
# OSX
109-
# =========================
110-
111-
.DS_Store
112-
.AppleDouble
113-
.LSOverride
120+
# mkdocs documentation
121+
/site
114122

115-
# Thumbnails
116-
._*
123+
# mypy
124+
.mypy_cache/
125+
.dmypy.json
126+
dmypy.json
117127

118-
# Files that might appear in the root of a volume
119-
.DocumentRevisions-V100
120-
.fseventsd
121-
.Spotlight-V100
122-
.TemporaryItems
123-
.Trashes
124-
.VolumeIcon.icns
128+
# Pyre type checker
129+
.pyre/
125130

126131
# Documentation
127132
/site
@@ -140,61 +145,14 @@ js/dist
140145
js/lib
141146
js/node_modules
142147

143-
<<<<<<< before updating
144-
# Directories potentially created on remote AFP share
145-
.AppleDB
146-
.AppleDesktop
147-
Network Trash Folder
148-
Temporary Items
149-
.apdisk
150-
=======
151148
# Jupyter
152149
.ipynb_checkpoints
153150
.autoversion
154-
hatch_cpp/nbextension
155-
hatch_cpp/labextension
156-
>>>>>>> after updating
157-
158-
# Windows
159-
# =========================
160-
161-
# Windows image file caches
162-
Thumbs.db
163-
ehthumbs.db
164-
165-
# Folder config file
166-
Desktop.ini
167-
168-
# Recycle Bin used on file shares
169-
$RECYCLE.BIN/
151+
python_template_js/nbextension
152+
python_template_js/labextension
170153

171-
# Windows Installer files
172-
*.cab
173-
*.msi
174-
*.msm
175-
*.msp
176-
177-
# Windows shortcuts
178-
*.lnk
179-
180-
181-
# NPM
182-
# ----
183-
**/node_modules/
184-
185-
# Coverage data
186-
# -------------
187-
**/coverage/
188-
189-
<<<<<<< before updating
190-
# Notebook and lab extensions
154+
# Mac
155+
.DS_Store
191156

192-
nbprint/extension/*
193-
nbprint/templates/nbprint/static/*
194-
nbprint/voila/static/*
195-
tmp.html
196-
examples/output/
197-
=======
198157
# Rust
199158
target
200-
>>>>>>> after updating

0 commit comments

Comments
 (0)