From b1e35113e342f578b75ba10fb5b0b2fb2f23c821 Mon Sep 17 00:00:00 2001 From: Martin Kim <46072231+martinkim0@users.noreply.github.com> Date: Tue, 2 Apr 2024 15:01:49 -0700 Subject: [PATCH] chore(misc): rename dotfiles, copy over .gitignore (#2653) renames top-level config files as dotfiles, copies over .gitignore from the cookiecutter --- codecov.yml => .codecov.yaml | 0 .gitignore | 141 ++++----------------------- readthedocs.yml => .readthedocs.yaml | 0 3 files changed, 21 insertions(+), 120 deletions(-) rename codecov.yml => .codecov.yaml (100%) rename readthedocs.yml => .readthedocs.yaml (100%) diff --git a/codecov.yml b/.codecov.yaml similarity index 100% rename from codecov.yml rename to .codecov.yaml diff --git a/.gitignore b/.gitignore index 1fffe607a3..dcdc618fa8 100644 --- a/.gitignore +++ b/.gitignore @@ -1,127 +1,28 @@ -# Byte-compiled / optimized / DLL files -__pycache__/ -*.py[cod] -*$py.class - -# C extensions -*.so - # Temp files .DS_Store *~ buck-out/ -# Distribution / packaging -.Python -env/ -build/ -develop-eggs/ -dist/ -downloads/ -eggs/ -.eggs/ -lib/ -lib64/ -parts/ -sdist/ -var/ -wheels/ -*.egg-info/ -.installed.cfg -*.egg -pip-wheel-metadata/ - -# PyInstaller -# Usually these files are written by a python script from a template -# before PyInstaller builds the exe, so as to inject date/other infos into it. -*.manifest -*.spec - -# Installer logs -pip-log.txt -pip-delete-this-directory.txt - -# Unit test / coverage reports -htmlcov/ -.tox/ -.coverage -.coverage.* -.cache -nosetests.xml -coverage.xml -*.cover -.hypothesis/ -.pytest_cache/ - -# Translations -*.mo -*.pot - -# Django stuff: -*.log -local_settings.py - -# Flask stuff: -instance/ -.webassets-cache - -# Scrapy stuff: -.scrapy - -# Sphinx documentation -docs/_build/ -docs/api/reference/ - -# PyBuilder -target/ - -# Jupyter Notebook -.ipynb_checkpoints - -# pyenv -.python-version - -# celery beat schedule file -celerybeat-schedule - -# SageMath parsed files -*.sage.py - -# dotenv -.env - -# virtualenv -.venv -venv/ -ENV/ - -# Spyder project settings -.spyderproject -.spyproject - -# Rope project settings -.ropeproject - -# mkdocs documentation -/site - -# mypy -.mypy_cache/ - -# PyCharm -.idea/ - -# Floobits -.floo -.flooignore - -# local debugging -/local - -# Custom scvi -/data -.vscode/settings.json -poetry.lock +# Compiled files +.venv/ +__pycache__/ .mypy_cache/ .ruff_cache/ -.vscode/ + +# Distribution / packaging +/build/ +/dist/ +/*.egg-info/ + +# Tests and coverage +/.pytest_cache/ +/.cache/ +/data/ + +# docs +/docs/generated/ +/docs/_build/ + +# IDEs +/.idea/ +/.vscode/ diff --git a/readthedocs.yml b/.readthedocs.yaml similarity index 100% rename from readthedocs.yml rename to .readthedocs.yaml