Skip to content

Commit fc53253

Browse files
authored
Merge pull request #123 from blooop/feature/ssh_cfg
Feature/ssh cfg
2 parents 865d003 + c44c44b commit fc53253

3 files changed

Lines changed: 32 additions & 34 deletions

File tree

.devcontainer/devcontainer.json

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,14 +33,12 @@
3333
"CLAUDE_CONFIG_DIR": "/home/vscode/.claude",
3434
"XDG_CONFIG_HOME": "/home/vscode/.config",
3535
"XDG_CACHE_HOME": "/home/vscode/.cache",
36-
"XDG_DATA_HOME": "/home/vscode/.local/share",
37-
"SSH_AUTH_SOCK": "/ssh-agent"
36+
"XDG_DATA_HOME": "/home/vscode/.local/share"
3837
},
3938
"mounts": [
4039
"source=${localWorkspaceFolderBasename}-pixi,target=${containerWorkspaceFolder}/.pixi,type=volume",
4140
"source=${localEnv:HOME}/.ssh/known_hosts,target=/home/vscode/.ssh/known_hosts,type=bind,ro",
42-
"source=${localEnv:HOME}/.ssh/config,target=/home/vscode/.ssh/config,type=bind,ro",
43-
"source=${localEnv:SSH_AUTH_SOCK},target=/ssh-agent,type=bind"
41+
"source=${localEnv:HOME}/.ssh/config,target=/home/vscode/.ssh/config,type=bind,ro"
4442
],
4543
"postCreateCommand": "sudo chown vscode .pixi && pixi install"
4644
}

pixi.lock

Lines changed: 27 additions & 27 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ test = [
4242
"ruff>=0.5.0,<=0.14.13",
4343
"coverage>=7.5.4,<=7.13.1",
4444
"prek>=0.2.28,<0.3.0",
45-
"ty>=0.0.8,<=0.0.12",
45+
"ty>=0.0.12,<=0.0.12",
4646
]
4747

4848
[build-system]
@@ -72,8 +72,8 @@ format = "ruff format ."
7272
check-clean-workspace = "git diff --exit-code"
7373
ruff-lint = "ruff check . --fix"
7474
pylint = "pylint --version && echo 'running pylint...' && pylint $(git ls-files '*.py')"
75-
ty = "ty check"
76-
lint = { depends-on = ["ruff-lint", "pylint", "ty"] }
75+
ty = "ty check --respect-ignore-files ."
76+
lint = { depends-on = ["ruff-lint", "ty", "pylint"] }
7777
style = { depends-on = ["format", "lint"] }
7878
commit-format = "git commit -a -m'autoformat code' || true"
7979
test = "pytest"

0 commit comments

Comments
 (0)