From 033b1724be7282790f6acae5686b330a8685845a Mon Sep 17 00:00:00 2001 From: Joongheon Park Date: Wed, 27 May 2026 13:17:42 +0900 Subject: [PATCH] chore: relax scaffold .vscode policy and bump to 0.7.1 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Three small follow-ups on top of the VSCode recommendations work: - .gitignore: drop the `.vscode/*` + negation block. The team has decided to track the whole `.vscode/` directory (launch.json, tasks.json, etc.) instead of pinning just extensions.json / settings.json. Personal preference files can still be locally ignored via `.git/info/exclude` if needed. - .vscode/settings.json: drop `python.analysis.typeCheckingMode` and `python.analysis.extraPaths`. Both are already governed by `[tool.pyright]` in pyproject.toml; duplicating them in the workspace settings invited drift. - Bump act-operator 0.7.0 → 0.7.1. Co-Authored-By: Claude Opus 4.7 (1M context) --- act_operator/act_operator/__init__.py | 2 +- .../scaffold/{{ cookiecutter.act_slug }}/.gitignore | 3 --- .../scaffold/{{ cookiecutter.act_slug }}/.vscode/settings.json | 2 -- 3 files changed, 1 insertion(+), 6 deletions(-) diff --git a/act_operator/act_operator/__init__.py b/act_operator/act_operator/__init__.py index 49e0fc1..a5f830a 100644 --- a/act_operator/act_operator/__init__.py +++ b/act_operator/act_operator/__init__.py @@ -1 +1 @@ -__version__ = "0.7.0" +__version__ = "0.7.1" diff --git a/act_operator/act_operator/scaffold/{{ cookiecutter.act_slug }}/.gitignore b/act_operator/act_operator/scaffold/{{ cookiecutter.act_slug }}/.gitignore index 05335f0..583fa4a 100644 --- a/act_operator/act_operator/scaffold/{{ cookiecutter.act_slug }}/.gitignore +++ b/act_operator/act_operator/scaffold/{{ cookiecutter.act_slug }}/.gitignore @@ -120,9 +120,6 @@ target/ cython_debug/ # IDE settings — track team-shared VSCode config, ignore everything else -.vscode/* -!.vscode/extensions.json -!.vscode/settings.json .idea/ .spyderproject .spyproject diff --git a/act_operator/act_operator/scaffold/{{ cookiecutter.act_slug }}/.vscode/settings.json b/act_operator/act_operator/scaffold/{{ cookiecutter.act_slug }}/.vscode/settings.json index 8d765b8..3fcf588 100644 --- a/act_operator/act_operator/scaffold/{{ cookiecutter.act_slug }}/.vscode/settings.json +++ b/act_operator/act_operator/scaffold/{{ cookiecutter.act_slug }}/.vscode/settings.json @@ -21,8 +21,6 @@ "python.testing.pytestEnabled": true, "python.testing.pytestArgs": [], "python.testing.autoTestDiscoverOnSaveEnabled": true, - "python.analysis.typeCheckingMode": "basic", - "python.analysis.extraPaths": ["."], "ruff.importStrategy": "fromEnvironment", "files.exclude": { "**/__pycache__": true,