Skip to content

Commit 6e9d000

Browse files
πŸ‘· Fix dev container mise config.
1 parent c5a3597 commit 6e9d000

3 files changed

Lines changed: 12 additions & 17 deletions

File tree

β€Ž.config/mise.tomlβ€Ž

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
[tools]
2+
"pipx:mypy" = "1.19"
3+
"pipx:poetry" = "2.2"
4+
ruff = "0.14.10"
5+
6+
[tasks]
7+
check = 'ruff check'
8+
format = 'ruff format'
9+
install = 'poetry install --all-groups --all-extras'
10+
mkdocs = 'poetry run mkdocs build -f .config/mkdocs.yaml'
11+
mypy = 'mypy --python-executable "$(poetry env info -p)/bin/python" --hide-absolute-path'

β€Ž.devcontainer/devcontainer.jsonβ€Ž

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,10 @@
44
},
55
"remoteUser": "root",
66
"remoteEnv": {
7-
"MISE_DEFAULT_CONFIG_FILENAME": ".devcontainer/mise.toml",
87
"MISE_TRUSTED_CONFIG_PATHS": "/",
98
},
109
postStartCommand: [
11-
"poetry install --all-groups"
10+
"poetry install --all-groups --all-extras"
1211
],
1312
postCreateCommand: "mise -c /workspaces/lapidary install"
1413
}

β€Ž.devcontainer/mise.tomlβ€Ž

Lines changed: 0 additions & 15 deletions
This file was deleted.

0 commit comments

Comments
Β (0)