Skip to content

Commit

Permalink
deps
Browse files Browse the repository at this point in the history
  • Loading branch information
kbirger committed Nov 28, 2024
1 parent 0db950c commit f7fc921
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 5 deletions.
10 changes: 7 additions & 3 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,10 @@
"image": "mcr.microsoft.com/devcontainers/python:1-3.12",
"name": "Smarter Kettle and Coffee integration integration development",
"appPort": [
"9123:8123"
"8123:8123"
],
"forwardPorts": [
8123
],
"customizations": {
"vscode": {
Expand All @@ -28,9 +31,10 @@
"eamodio.gitlens",
"charliermarsh.ruff",
"redhat.vscode-yaml",
"github.vscode-github-actions"
"github.vscode-github-actions",
"matangover.mypy"
]
}
},
"postCreateCommand": "container install"
"postCreateCommand": "scripts/setup.sh"
}
3 changes: 2 additions & 1 deletion .vscode/extensions.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
"eamodio.gitlens",
"charliermarsh.ruff",
"redhat.vscode-yaml",
"github.vscode-github-actions"
"github.vscode-github-actions",
"matangover.mypy"
]
}
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@ exclude = [
line-length = 88
[tool.ruff.format]
quote-style = "double"
line-ending = "lf"

[tool.ruff.lint]
select = ["D", "E", "F", "W", "I", "UP", "R"]
Expand Down
2 changes: 1 addition & 1 deletion scripts/setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ set -e

curl -sSL https://pdm-project.org/install-pdm.py | python3 -

pdm install -G testing
pdm install -G dev,testing

0 comments on commit f7fc921

Please sign in to comment.