We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c5a3597 commit 6e9d000Copy full SHA for 6e9d000
3 files changed
β.config/mise.tomlβ
@@ -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β
@@ -4,11 +4,10 @@
},
"remoteUser": "root",
"remoteEnv": {
- "MISE_DEFAULT_CONFIG_FILENAME": ".devcontainer/mise.toml",
"MISE_TRUSTED_CONFIG_PATHS": "/",
postStartCommand: [
- "poetry install --all-groups"
+ "poetry install --all-groups --all-extras"
12
],
13
postCreateCommand: "mise -c /workspaces/lapidary install"
14
}
β.devcontainer/mise.tomlβ
0 commit comments