chore: add .gitignore and stage all project files
Some checks failed
E2E Tests / E2E Test (Linux) - ${{ matrix.sandbox }} (20.x, sandbox:docker) (push) Has been cancelled
E2E Tests / E2E Test (Linux) - ${{ matrix.sandbox }} (20.x, sandbox:none) (push) Has been cancelled
E2E Tests / E2E Test (Linux) - ${{ matrix.sandbox }} (22.x, sandbox:docker) (push) Has been cancelled
E2E Tests / E2E Test (Linux) - ${{ matrix.sandbox }} (22.x, sandbox:none) (push) Has been cancelled
E2E Tests / E2E Test (Linux) - ${{ matrix.sandbox }} (24.x, sandbox:docker) (push) Has been cancelled
E2E Tests / E2E Test (Linux) - ${{ matrix.sandbox }} (24.x, sandbox:none) (push) Has been cancelled
E2E Tests / E2E Test - macOS (push) Has been cancelled
Mark stale issues and pull requests / stale (push) Has been cancelled
Qwen Scheduled Issue Triage / triage-issues (push) Has been cancelled
No Response / no-response (push) Has been cancelled
📋 Gemini Scheduled Issue Deduplication / refresh-embeddings (push) Has been cancelled
Qwen Scheduled PR Triage 🚀 / audit-prs (push) Has been cancelled
Some checks failed
E2E Tests / E2E Test (Linux) - ${{ matrix.sandbox }} (20.x, sandbox:docker) (push) Has been cancelled
E2E Tests / E2E Test (Linux) - ${{ matrix.sandbox }} (20.x, sandbox:none) (push) Has been cancelled
E2E Tests / E2E Test (Linux) - ${{ matrix.sandbox }} (22.x, sandbox:docker) (push) Has been cancelled
E2E Tests / E2E Test (Linux) - ${{ matrix.sandbox }} (22.x, sandbox:none) (push) Has been cancelled
E2E Tests / E2E Test (Linux) - ${{ matrix.sandbox }} (24.x, sandbox:docker) (push) Has been cancelled
E2E Tests / E2E Test (Linux) - ${{ matrix.sandbox }} (24.x, sandbox:none) (push) Has been cancelled
E2E Tests / E2E Test - macOS (push) Has been cancelled
Mark stale issues and pull requests / stale (push) Has been cancelled
Qwen Scheduled Issue Triage / triage-issues (push) Has been cancelled
No Response / no-response (push) Has been cancelled
📋 Gemini Scheduled Issue Deduplication / refresh-embeddings (push) Has been cancelled
Qwen Scheduled PR Triage 🚀 / audit-prs (push) Has been cancelled
This commit is contained in:
parent
65cf80f4ab
commit
8b35ffc18b
0
.github/scripts/pr-triage.sh
vendored
Executable file → Normal file
0
.github/scripts/pr-triage.sh
vendored
Executable file → Normal file
86
.gitignore
vendored
86
.gitignore
vendored
|
|
@ -1,59 +1,45 @@
|
|||
# API keys and secrets
|
||||
.env
|
||||
.env~
|
||||
|
||||
# gemini-cli settings
|
||||
# We want to keep the .gemini in the root of the repo and ignore any .gemini
|
||||
# in subdirectories. In our root .gemini we want to allow for version control
|
||||
# for subcommands.
|
||||
**/.gemini/
|
||||
!/.gemini/
|
||||
.gemini/*
|
||||
!.gemini/config.yaml
|
||||
!.gemini/commands/
|
||||
|
||||
# Note: .gemini-clipboard/ is NOT in gitignore so Gemini can access pasted images
|
||||
|
||||
# Dependency directory
|
||||
node_modules
|
||||
bower_components
|
||||
package-lock.json
|
||||
|
||||
# Editors
|
||||
.idea
|
||||
*.iml
|
||||
.cursor
|
||||
|
||||
# OS metadata
|
||||
# macOS resource forks
|
||||
._*
|
||||
.DS_Store
|
||||
Thumbs.db
|
||||
.AppleDouble
|
||||
.LSOverride
|
||||
|
||||
# TypeScript build info files
|
||||
*.tsbuildinfo
|
||||
# IDE
|
||||
.idea/
|
||||
.vscode/
|
||||
*.swp
|
||||
*.swo
|
||||
*~
|
||||
|
||||
# Ignore built ts files
|
||||
dist
|
||||
# Python
|
||||
__pycache__/
|
||||
*.py[cod]
|
||||
*.egg-info/
|
||||
.venv/
|
||||
venv/
|
||||
|
||||
# Docker folder to help skip auth refreshes
|
||||
.docker
|
||||
# Node
|
||||
node_modules/
|
||||
.npm/
|
||||
dist/
|
||||
.next/
|
||||
.nuxt/
|
||||
|
||||
bundle
|
||||
# Rust / Cargo
|
||||
target/
|
||||
|
||||
# Test report files
|
||||
junit.xml
|
||||
packages/*/coverage/
|
||||
# Archives
|
||||
*.rar
|
||||
*.tar
|
||||
*.tar.gz
|
||||
*.zip
|
||||
|
||||
# Generated files
|
||||
packages/cli/src/generated/
|
||||
packages/core/src/generated/
|
||||
.integration-tests/
|
||||
packages/vscode-ide-companion/*.vsix
|
||||
|
||||
# Qwen Code Configs
|
||||
.qwen/
|
||||
# Logs
|
||||
*.log
|
||||
logs/
|
||||
# GHA credentials
|
||||
gha-creds-*.json
|
||||
|
||||
# Log files
|
||||
patch_output.log
|
||||
# Env files (keep example only)
|
||||
.env
|
||||
.env.local
|
||||
.env.*.local
|
||||
|
||||
|
|
|
|||
0
.husky/pre-commit
Executable file → Normal file
0
.husky/pre-commit
Executable file → Normal file
0
packages/cli/src/config/config.ts
Executable file → Normal file
0
packages/cli/src/config/config.ts
Executable file → Normal file
0
packages/core/src/utils/workspaceContext.ts
Executable file → Normal file
0
packages/core/src/utils/workspaceContext.ts
Executable file → Normal file
0
packages/core/vendor/ripgrep/arm64-darwin/rg
vendored
Executable file → Normal file
0
packages/core/vendor/ripgrep/arm64-darwin/rg
vendored
Executable file → Normal file
0
packages/core/vendor/ripgrep/arm64-linux/rg
vendored
Executable file → Normal file
0
packages/core/vendor/ripgrep/arm64-linux/rg
vendored
Executable file → Normal file
0
packages/core/vendor/ripgrep/x64-darwin/rg
vendored
Executable file → Normal file
0
packages/core/vendor/ripgrep/x64-darwin/rg
vendored
Executable file → Normal file
0
packages/core/vendor/ripgrep/x64-linux/rg
vendored
Executable file → Normal file
0
packages/core/vendor/ripgrep/x64-linux/rg
vendored
Executable file → Normal file
0
scripts/create_alias.sh
Executable file → Normal file
0
scripts/create_alias.sh
Executable file → Normal file
0
scripts/local_telemetry.js
Executable file → Normal file
0
scripts/local_telemetry.js
Executable file → Normal file
0
scripts/telemetry.js
Executable file → Normal file
0
scripts/telemetry.js
Executable file → Normal file
0
scripts/telemetry_gcp.js
Executable file → Normal file
0
scripts/telemetry_gcp.js
Executable file → Normal file
Loading…
Reference in New Issue
Block a user