.takt/ をディレクトリごと ignore していたため、.takt/.gitignore の 否定パターン(!config.yaml 等)がルートから到達不能だった。 ルート .gitignore から冗長な .takt/ 制御を削除し、.takt/.gitignore に一元化。 併せて .takt/config.yaml にプロジェクトレベルの quality gates 設定を追加。
43 lines
428 B
Plaintext
43 lines
428 B
Plaintext
# Dependencies
|
|
node_modules
|
|
node_modules/
|
|
|
|
# Build output
|
|
dist/
|
|
*.tgz
|
|
|
|
# IDE
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Logs
|
|
*.log
|
|
npm-debug.log*
|
|
|
|
# Test coverage
|
|
coverage/
|
|
|
|
# E2E test results
|
|
e2e/results/
|
|
|
|
# Environment
|
|
.env
|
|
.env.local
|
|
.env.*.local
|
|
.envrc
|
|
|
|
# TAKT runtime data (facets/pieces/config are managed by .takt/.gitignore)
|
|
|
|
task_planning/
|
|
|
|
OPENCODE_CONFIG_CONTENT
|
|
|
|
# Local editor/agent settings
|
|
.claude/
|