mirror of
https://github.com/affaan-m/everything-claude-code.git
synced 2026-03-30 13:43:26 +08:00
* chore(config): governance and config foundation (PR #272 split 1/6) Add repository governance and configuration files: - CODEOWNERS: review authority model - ISSUE_TEMPLATE: Copilot task template - PULL_REQUEST_TEMPLATE: comprehensive review checklist - .env.example: environment variable documentation - .tool-versions: asdf/mise compatibility (Node 20, Python 3.12) - .gitignore: expanded coverage (build, test, Python, tmp) - .markdownlint.json: add MD009 trailing whitespace rule - VERSION: 0.1.0 This is PR 1 of 6 from the PR #272 decomposition plan. Dependency chain: PR-1 → PR-2 → PR-3 → PR-4/5/6 (parallel) * chore(config): remove fork-specific CODEOWNERS from upstream PR CODEOWNERS references @alfraido86-jpg (fork owner). Submitting this to upstream would override @affaan-m's review authority. CODEOWNERS belongs in the fork only, not in upstream contributions. Ref: SAM finding F9 (run-048 audit) * chore: address CodeRabbit review feedback on PR #292 - Scope markdownlint config to repo files (globs pattern) - Add pre-commit hook checkbox to PR template Ref: CodeRabbit review on PR #292 * fix(config): address CodeRabbit nitpicks N2 and N3 N2: Move pre-commit hooks checkbox higher in security checklist. N3: Replace global MD009 disable with scoped config (br_spaces: 2). * fix(config): use recursive glob for node_modules exclusion (N4)
90 lines
995 B
Plaintext
90 lines
995 B
Plaintext
# Environment files
|
|
.env
|
|
.env.local
|
|
.env.*.local
|
|
.env.development
|
|
.env.test
|
|
.env.production
|
|
|
|
# API keys and secrets
|
|
*.key
|
|
*.pem
|
|
secrets.json
|
|
config/secrets.yml
|
|
.secrets
|
|
|
|
# OS files
|
|
.DS_Store
|
|
.DS_Store?
|
|
._*
|
|
.Spotlight-V100
|
|
.Trashes
|
|
ehthumbs.db
|
|
Thumbs.db
|
|
Desktop.ini
|
|
|
|
# Editor files
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
.project
|
|
.classpath
|
|
.settings/
|
|
*.sublime-project
|
|
*.sublime-workspace
|
|
|
|
# Node
|
|
node_modules/
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
.pnpm-debug.log*
|
|
.yarn/
|
|
lerna-debug.log*
|
|
|
|
# Build outputs
|
|
dist/
|
|
build/
|
|
*.tsbuildinfo
|
|
.cache/
|
|
|
|
# Test coverage
|
|
coverage/
|
|
.nyc_output/
|
|
|
|
# Logs
|
|
logs/
|
|
*.log
|
|
|
|
# Python
|
|
__pycache__/
|
|
*.pyc
|
|
|
|
# Task files (Claude Code teams)
|
|
tasks/
|
|
|
|
# Personal configs (if any)
|
|
personal/
|
|
private/
|
|
|
|
# Session templates (not committed)
|
|
examples/sessions/*.tmp
|
|
|
|
# Local drafts
|
|
marketing/
|
|
.dmux/
|
|
|
|
# Temporary files
|
|
tmp/
|
|
temp/
|
|
*.tmp
|
|
*.bak
|
|
*.backup
|
|
|
|
# Bootstrap pipeline outputs
|
|
# Generated lock files in tool subdirectories
|
|
.opencode/package-lock.json
|
|
.opencode/node_modules/
|