-
-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy path.gitpod.yml
30 lines (28 loc) · 1.57 KB
/
.gitpod.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
image: condaforge/mambaforge:23.1.0-1
tasks:
- name: Initialize
init: |
. /opt/conda/etc/profile.d/conda.sh
conda activate base
sleep 5
mamba env create --name fastq-dl --file /workspace/fastq-dl/environment.yml
conda activate fastq-dl
mamba install -y -c conda-forge -c bioconda just pre-commit
mkdir -p .vscode
echo '{"python.pythonPath": "/home/gitpod/.conda/envs/fastq-dl/bin/python"}' > .vscode/settings.json
pre-commit install --install-hooks
just install
command: |
vscode:
extensions:
- codezombiech.gitignore # Language support for .gitignore files
- davidanson.vscode-markdownlint # Markdown/CommonMark linting and style checking for Visual Studio Code
- eamodio.gitlens # Quickly glimpse into whom, why, and when a line or code block was changed
- EditorConfig.EditorConfig # override user/workspace settings with settings found in .editorconfig files
- Gruntfuggly.todo-tree # Display TODO and FIXME in a tree view in the activity bar
- mechatroner.rainbow-csv # Highlight columns in csv files in different colors
- oderwat.indent-rainbow # Highlight indentation level
- streetsidesoftware.code-spell-checker # Spelling checker for source code
- ms-python.black-formatter # Support for Python Black formatter
- njpwerner.autodocstring # Use type hints to auto create doc strings
- ms-python.python # Syntax and linting