Skip to content

Commit ccae8de

Browse files
committed
Run pre-commit
1 parent 69106d1 commit ccae8de

5 files changed

Lines changed: 20 additions & 26 deletions

File tree

.devcontainer/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,4 @@ RUN curl -L -o /usr/local/bin/pixi -fsSL --compressed "https://github.com/prefix
1010
USER vscode
1111
WORKDIR /home/vscode
1212

13-
RUN echo 'eval "$(pixi completion -s bash)"' >> /home/vscode/.bashrc
13+
RUN echo 'eval "$(pixi completion -s bash)"' >> /home/vscode/.bashrc

.devcontainer/devcontainer.json

Lines changed: 16 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,17 @@
11
{
2-
"name": "MultiQC_SAV Dev Container",
3-
"runArgs": ["--platform=linux/amd64" ],
4-
"build": {
5-
"dockerfile": "Dockerfile",
6-
"context": ".."
7-
},
8-
"customizations": {
9-
"vscode": {
10-
"settings": {},
11-
"extensions": [
12-
"ms-python.python",
13-
"charliermarsh.ruff",
14-
"GitHub.copilot"
15-
]
16-
}
17-
},
18-
"features": {
19-
},
20-
"mounts": [
21-
"source=${localWorkspaceFolderBasename}-pixi,target=${containerWorkspaceFolder}/.pixi,type=volume"
22-
],
23-
"postCreateCommand": "sudo chown vscode .pixi && pixi install"
24-
}
2+
"name": "MultiQC_SAV Dev Container",
3+
"runArgs": ["--platform=linux/amd64"],
4+
"build": {
5+
"dockerfile": "Dockerfile",
6+
"context": ".."
7+
},
8+
"customizations": {
9+
"vscode": {
10+
"settings": {},
11+
"extensions": ["ms-python.python", "charliermarsh.ruff", "GitHub.copilot"]
12+
}
13+
},
14+
"features": {},
15+
"mounts": ["source=${localWorkspaceFolderBasename}-pixi,target=${containerWorkspaceFolder}/.pixi,type=volume"],
16+
"postCreateCommand": "sudo chown vscode .pixi && pixi install"
17+
}

.vscode/settings.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
22
"python-envs.defaultEnvManager": "ms-python.python:system",
33
"python-envs.pythonProjects": []
4-
}
4+
}

CLAUDE.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -148,6 +148,7 @@ SAV = "multiqc_sav.modules.sav.sav:SAVModule"
148148
## Testing
149149

150150
Tests are run via GitHub Actions on Python 3.11, 3.12, and 3.13. Each test:
151+
151152
1. Runs MultiQC with the SAV module on test data
152153
2. Verifies that `multiqc_report.html` is generated
153154
3. Checks that the SAV module appears in the log

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ classifiers = [
3131
"Topic :: Scientific/Engineering",
3232
"Topic :: Scientific/Engineering :: Bio-Informatics",
3333
"Topic :: Scientific/Engineering :: Visualization",
34-
]
34+
]
3535
requires-python = ">=3.9"
3636
dependencies = [
3737
"multiqc>=1.25",

0 commit comments

Comments
 (0)