Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 15 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -47,10 +47,17 @@ v6/scripts/
*.temp
.cache/

# Local development & secrets
# Local development & secrets.
# Credentials belong in ~/.config/vscode-publishing/publish.env or the macOS
# keychain, never in a project directory — a repo-local secret is one `git add -A`
# away from being public, and this repo IS public.
.env
.env.local
.env.*.local
.env.*
!.env.example
*.pat
*.token
secrets.json
.npmrc

# Test coverage
coverage/
Expand Down Expand Up @@ -88,3 +95,8 @@ mcp/tradingview-mcp/
# The CI golden corpus lives in test/fixtures/corpus/ (synthetic fixtures) so the
# false-positive gate works without exposing any trading logic. See CLAUDE.md.
examples/

# Working directory — process notes, planning, audits, release runbooks.
# Same convention as _plugin/ in googlecloud-plugin and pinescript-plugin:
# operational detail stays out of the public repo.
_process/
Loading