diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index 4c0bbd8..8a0bd07 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -17,14 +17,14 @@ "customizations": { "vscode": { "extensions": [ - "ms-python.python", - "ms-python.black-formatter", - "ms-python.vscode-pylance", - "ms-python.isort", - "charliermarsh.ruff", - "ms-toolsai.jupyter", - "esbenp.prettier-vscode" - ] + "ms-python.python", + "ms-python.black-formatter", + "ms-python.vscode-pylance", + "ms-python.isort", + "charliermarsh.ruff", + "ms-toolsai.jupyter", + "esbenp.prettier-vscode" + ] } }, "postCreateCommand": "pip3 install --user -r dev-reqs.txt && apt-get update && apt-get install -y nodejs npm && npm install" diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 84de42f..1840f88 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -20,10 +20,10 @@ ruff: prettier: stage: lint - image: node:16-slim # Use Node.js image since prettier is a Node.js tool + image: node:16-slim # Use Node.js image since prettier is a Node.js tool script: - npm install prettier - - npx prettier --check . # Adjust the path as needed + - npx prettier --check . # Adjust the path as needed include: - local: /site/.gitlab-ci.yml