Skip to content

[repo] Untrack editor and cache directories #212

@JonnyTran

Description

@JonnyTran

Problem

Editor and tool-cache directories are tracked in git: .cursor/, .vscode/, .ruff_cache/. These pollute diffs and can leak personal config.

Approach

  1. git rm -r --cached .cursor .vscode .ruff_cache (verify each exists first).
  2. Add to .gitignore if not already present.
  3. Verify __pycache__/, output/, coverage.xml are gitignored at the root.

Acceptance criteria

  • git ls-files | grep -E "^\.(cursor|vscode|ruff_cache)/" returns nothing.
  • .gitignore covers all of the above.
  • No working-tree files lost.

Metadata

Metadata

Assignees

No one assigned

    Type

    No type
    No fields configured for issues without a type.

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions